﻿body {
    background-color: yellow !important; /* Görünür test rengi */
    background-image: url('/image/cocuklararkaplan.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center !important;
    background-attachment: fixed !important;
}



.form-container {
    position: relative;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px); /* Safari için */
}


    .form-container h2 {
        text-align: center;
        margin-bottom: 20px;
        color: #333;
    }

.aidat-form .form-group {
    margin-bottom: 15px;
}

.aidat-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #555;
}

.aidat-form input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border-color 0.3s;
}

    .aidat-form input:focus {
        border-color: #007bff;
        outline: none;
    }

.submit-btn {
    width: 100%;
    padding: 12px;
    background-color: #007bff;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .submit-btn:hover {
        background-color: #0056b3;
    }
.table-container {
    max-width: 900px;
    margin: 40px auto;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.1); /* şeffaf beyaz */
    border-radius: 15px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff; /* Beyaz yazı, arka planda okunması için */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
}

    .payment-table thead th {
        padding: 12px 10px;
        border-bottom: 2px solid rgba(255,255,255,0.3);
        text-align: left;
    }

    .payment-table tbody td {
        padding: 12px 10px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .payment-table tbody tr:hover {
        background-color: rgba(255, 255, 255, 0.15);
    }

.paid {
    color: #2ecc71; /* yeşil */
    font-weight: bold;
}

.pending a {
    color: #e74c3c; /* kırmızı */
    font-weight: bold;
    text-decoration: none;
}

    .pending a:hover {
        text-decoration: underline;
    }
.btn-sm {
    min-width: 90px;
}

.me-1 {
    margin-right: 0.25rem !important;
}

/* Filtre form elemanları */
.filter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .filter-form .form-control {
        flex: 1 1 200px;
        padding: 8px 10px;
        border-radius: 6px;
        border: 1px solid #ccc;
    }

    .filter-form .btn {
        flex: 0 0 auto;
        padding: 8px 16px;
        border-radius: 6px;
    }

.student-table {
    width: 100%;
    border-collapse: collapse;
}

    .student-table th,
    .student-table td {
        padding: 12px 15px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .student-table th {
        background-color: #343a40;
        color: white;
    }

    .student-table tr:hover {
        background-color: #f9f9f9;
    }

.active {
    color: green;
    font-weight: bold;
}

.inactive {
    color: gray;
    font-style: italic;
}

.edit-btn, .delete-btn {
    padding: 6px 12px;
    margin-right: 5px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 14px;
    cursor: pointer;
}

.edit-btn {
    background-color: #007bff;
}

    .edit-btn:hover {
        background-color: #0056b3;
    }

.delete-btn {
    background-color: #dc3545;
}

    .delete-btn:hover {
        background-color: #b02a37;
    }
.student-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.dashboard-container {
    max-width: 1000px;
    margin: 30px auto;
    padding: 20px;
    text-align: center;
}
.transparent-container {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}
.table-transparent {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

    .table-transparent th,
    .table-transparent td {
        vertical-align: middle;
    }

/* Butonlara eşit genişlik için ve küçük margin */
.btn-sm {
    min-width: 90px;
}

/* Küçük boşluklar butonlar arasında */
.me-1 {
    margin-right: 0.25rem !important;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.card {
    flex: 1 1 200px;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

    .card h3 {
        margin-bottom: 10px;
        color: #007bff;
    }

    .card p {
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }

.quick-links {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    text-decoration: none;
    background-color: #007bff;
    color: white;
    padding: 10px 18px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s;
}

    .btn:hover {
        background-color: #0056b3;
    }
.landing-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px;
    background-color: #f5f8fa;
    min-height: 100vh;
}

.left-content {
    flex: 1;
    padding: 40px;
}

    .left-content h1 {
        font-size: 2.5rem;
        color: #333;
    }

    .left-content p {
        font-size: 1.2rem;
        margin-top: 15px;
        color: #555;
    }

.right-content {
    flex: 1;
    text-align: center;
}

    .right-content .btn {
        margin-top: 30px;
        padding: 12px 24px;
        font-size: 1.1rem;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 8px;
    }

        .right-content .btn:hover {
            background-color: #0056b3;
        }
/* HEADER - Navbar */
.navbar {
    background-color: #ccc !important;
    color: #fff;
}

.navbar-brand,
.navbar-nav .nav-link {
    color: #343a40 !important;
}

    .navbar-nav .nav-link:hover {
        color: #ccc !important;
    }

/* Çıkış butonu */
.navbar .btn-outline-secondary {
    color: #fff;
    border-color: #fff;
    transition: all 0.3s ease-in-out;
}

    .navbar .btn-outline-secondary:hover {
        color: #fff;
        background-color: #fff;
        color: #343a40;
    }


.action-btn {
    padding: 6px 14px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    min-width: 90px; /* Butonların aynı genişlikte olması için */
    text-align: center;
    backdrop-filter: blur(4px); /* Daha hafif blur */
    -webkit-backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.1); /* Daha şeffaf */
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease;
    display: inline-block;
    width: 90px; /* Kesin eşit genişlik */
}

    .action-btn:hover {
        background-color: rgba(255, 255, 255, 0.25);
        color: #222;
    }

    .action-btn.edit {
        background-color: rgba(46, 204, 113, 0.15);
        color: #2ecc71;
    }

        .action-btn.edit:hover {
            background-color: rgba(46, 204, 113, 0.35);
            color: #14532d;
        }

    .action-btn.delete {
        background-color: rgba(231, 76, 60, 0.15);
        color: #e74c3c;
    }

        .action-btn.delete:hover {
            background-color: rgba(231, 76, 60, 0.35);
            color: #7f1d1d;
        }
