/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/alumni-bg.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    margin-bottom: 30px;
}

.card {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

.table-responsive {
    overflow-x: auto;
}

/* Navbar Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Button Styles */
.btn {
    border-radius: 5px;
    padding: 8px 15px;
}

/* Form Styles */
.form-control, .form-select {
    border-radius: 5px;
    padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .card-body {
        padding: 15px;
    }
}

/* Badge Styles */
.badge {
    padding: 6px 10px;
    font-weight: normal;
}

/* Modal Styles */
.modal-content {
    border-radius: 10px;
}

/* Footer Styles */
.footer {
    margin-top: 50px;
    padding: 20px 0;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}