html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
/*donate button */
.donate-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    background-color: #ff4081;
    color: white;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

    .donate-btn:hover {
        background-color: #e91e63;
        color: white;
        text-decoration: none;
    }

@media (max-width: 768px) {
    .donate-btn {
        bottom: 60px;
        right: 15px;
        font-size: 14px;
        padding: 8px 16px;
    }
}
/*donate button */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
/*super admin theame */
.superadmin-theme {
    background-color: #001f3f !important;
    color: white;
}

    .superadmin-theme .navbar {
        background-color: #003366;
        color: white;
    }
.superadmin-theme {
    background-color: #001f3f;
    color: white;
}

    .superadmin-theme .navbar {
        background-color: #003366;
    }

    .superadmin-theme .card {
        border-radius: 12px;
        box-shadow: 0 0 10px #222;
    }

    .superadmin-theme a, .superadmin-theme h2, .superadmin-theme p {
        color: white !important;
    }

/*super admin theame */

/*second navbar ki class */
.home-badge {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    text-decoration-color: lightgreen;
    background-color: var(--bs-warning-bg-subtle);
    border: 1px solid var(--bs-success-border-subtle);
    border-radius: 50rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin :2px;
}

    .home-badge img {
        border-radius: 50%;
        margin-right: 0.2rem;
        width: 19px;
        height: 19px;
    }


/*second navbar ki class */

/*Login form */
/*html,
body {
    height: 100%;
}*/

.form-signin {
    max-width: 330px;
    padding: 1rem;
}

    .form-signin .form-floating:focus-within {
        z-index: 2;
    }

    .form-signin input[type="email"] {
        margin-bottom: -1px;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
    }

    .form-signin input[type="password"] {
        margin-bottom: 10px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

/*Login form */
:root {
    --primary-text: #4B2E05;
    --accent-gold: #D4AF37;
    --light-bg: #FFF7E0;
}

/* BODY */
body {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 10%), linear-gradient(120deg, #FFD59E 0%, #FFE4B5 50%, #FFF5D7 100%);
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
}

.srdColor {
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.12), transparent 10%), linear-gradient(120deg, #FFD59E 0%, #FFE4B5 50%, #FFF5D7 100%);
    color: var(--primary-text);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    min-height: 100vh;
}
/* NAVBAR */
.navbar {
    background: linear-gradient(90deg, #FFF8E7 0%, #FFEFD0 100%);
    border-bottom: 3px solid var(--accent-gold);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: var(--primary-text) !important;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link {
    color: #5A2E00 !important;
    font-weight: 500;
    transition: 0.3s;
}

    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-gold) !important;
    }

/* SIDEBAR */
.sidebar {
    height: 100vh;
    background: linear-gradient(180deg, #FFF4D1 0%, #FFE8A3 100%);
    border-right: 2px solid rgba(212,175,55,0.3);
    box-shadow: inset -1px 0 6px rgba(0,0,0,0.08);
    padding-top: 20px;
}

    .sidebar a {
        display: block;
        color: var(--primary-text);
        padding: 10px 20px;
        text-decoration: none;
        font-weight: 500;
        transition: 0.3s;
    }

        .sidebar a:hover,
        .sidebar a.active {
            background: rgba(255, 215, 0, 0.15);
            color: var(--accent-gold);
            border-left: 4px solid var(--accent-gold);
        }
 
/* MAIN CONTENT */
.main-content {
    margin-left: 220px;
    padding: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        left: -220px;
        width: 220px;
        transition: left 0.3s;
        z-index: 999;
    }

        .sidebar.open {
            left: 0;
        }

    .main-content {
        margin-left: 0;
    }
}

/*vaidattion script */