html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}


html {
    position: relative;
    min-height: 100%;
}


body {
    margin-bottom: 60px;
    font-family: "Segoe UI", Tahoma, Arial, sans-serif;
    background: #f5f7fb;
}


/* Navbar */

.navbar {
    border-radius: 0 0 20px 20px;
}


.navbar-brand {
    font-size: 25px;
    font-weight: bold;
    color: #0d6efd !important;
}



.nav-link {
    font-weight: 600;
    transition: .3s;
}



    .nav-link:hover {
        color: #0d6efd !important;
        transform: translateY(-2px);
    }





/* Dashboard Cards */


.dashboard-card {
    border-radius: 25px;
    transition: .3s;
}



    .dashboard-card:hover {
        transform: translateY(-8px);
    }





.icon-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 45px;
}





.school-badge {
    background: linear-gradient(45deg,#0d6efd,#6610f2);
    color: white;
    padding: 15px 25px;
    border-radius: 20px;
    font-weight: bold;
}





/* Cards */

.card {
    border-radius: 25px;
}



.btn {
    border-radius: 15px;
    font-weight: bold;
    padding: 10px 20px;
}





/* Tables */

.table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
}



    .table thead {
        background: #0d6efd;
        color: white;
    }





/* Forms */

.form-control {
    border-radius: 15px;
    padding: 12px;
}



    .form-control:focus {
        box-shadow: 0 0 0 .2rem rgba(13,110,253,.25);
    }





/* Footer */

.footer {
    background: white;
    padding: 15px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}
