.student-panel-menu .btn {
    text-align: left;
    border-radius: 0;
    /* Removes rounded corners for a stacked look */
    padding: 8px 15px;
    /* Adjust padding to reduce space */
    font-size: 14px;
    /* Slightly smaller font size */
    border-color: #10622e;
    /* Sets border to signature color */
    color: #10622e;
    /* Default text color */
}

.student-panel-menu .btn:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.student-panel-menu .btn:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.student-panel-menu .btn:hover,
.student-panel-menu .btn.active {
    background-color: #10622e;
    color: white;
}

.student-panel-menu .btn-outline-danger {
    border-color: #dc3545;
    color: #dc3545;
}

.student-panel-menu .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}



/* profile card */
/* Student Profile Card - Minimal Borders & Shadow */
.student-profile-card {
    border: none;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.student-profile-card .card-header {
    /* background-color: #10622e; */
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    padding: 8px;
    border-radius: 8px 8px 0 0;
}

/* Profile Image */
.profile-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid #10622e;
    object-fit: cover;
}

/* Table Styling - Compact & Matches Sidebar */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 6px 10px;
    /* Reduced padding */
    font-size: 14px;
    /* Matches menu text size */
    height: 38px;
    /* Compact row height */
    vertical-align: middle;
    border-bottom: 1px solid #e0e0e0;
}

.table th {
    background: #f9f9f9;
    font-weight: 600;
}

.table tr:last-child td {
    border-bottom: none;
}

/* Button Style - Matches Student Panel Menu */
.card-footer .btn-primary {
    background-color: #10622e;
    border: none;
    font-size: 14px;
    height: 38px;
    /* Matches menu button height */
    padding: 6px 12px;
}

.card-footer .btn-primary:hover {
    background-color: #0a4d22;
}

/* Sidebar Buttons */
.student-panel-menu .btn {
    text-align: left;
    font-size: 14px;
    height: 38px;
    /* Same height as table rows */
    padding: 6px 12px;
    /* Compact padding */
    border-radius: 0;
}

.student-panel-menu .btn.active {
    background-color: #10622e;
    color: white;
}