/* Custom CSS for the Student Grouping System */

body {
    font-family: 'Prompt', sans-serif;
    background-color: #f8f9fa;
}

.navbar-brand {
    font-weight: 500;
}

.card {
    border-radius: 10px;
    margin-bottom: 20px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.btn {
    font-weight: 500;
    border-radius: 5px;
}

.table th {
    background-color: #f5f5f5;
}

.student-card {
    transition: all 0.3s;
}

.student-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.edit-time-banner {
    background-color: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.admin-sidebar {
    background-color: #343a40;
    min-height: calc(100vh - 56px);
    color: white;
}

.admin-sidebar .nav-link {
    color: rgba(255,255,255,.75);
    padding: 10px 20px;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    color: #fff;
    background-color: rgba(255,255,255,.1);
}

.admin-sidebar .nav-link i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

/* Responsive styling */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card-title {
        font-size: 1.25rem;
    }
} 