:root {
    --primary-green: #2ecc71;
    --primary-blue: #3498db;
    --accent-teal: #1abc9c;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --border-radius: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

#forgot-password-link {
    display: block;
    text-align: right;
    margin-top: -10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--primary-blue);
    text-decoration: none;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-green);
    top: -200px;
    left: -100px;
    animation: float 15s infinite ease-in-out;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: var(--primary-blue);
    bottom: -250px;
    right: -150px;
    animation: float 18s infinite ease-in-out 2s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-teal);
    top: 50%;
    left: 70%;
    animation: float 12s infinite ease-in-out 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(-20px, 20px) rotate(5deg);
    }
    50% {
        transform: translate(10px, -15px) rotate(-5deg);
    }
    75% {
        transform: translate(15px, 10px) rotate(3deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo img {
    height: 90px;
}

.logout-btn {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.logout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Auth Card Styles */
.auth-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    max-width: 450px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.auth-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.auth-tab {
    padding: 12px 24px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
    position: relative;
}

.auth-tab.active {
    color: var(--primary-blue);
}

.auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px 3px 0 0;
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.8);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.btn {
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
    max-width: 100%;
    margin: 1rem;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.3);
}

.btn-secondary {
    background: var(--primary-green);
    color: white;
    display: flex;
    max-width: 100%;
    margin: 1rem;
    justify-content: center;
}

.btn-secondary:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

.form-footer a {
    color: var(--primary-blue);
    text-decoration: none;
}

.form-footer a:hover {
    text-decoration: underline;
}

.otp-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.otp-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

/* OTP Verification Modal */
.otp-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.otp-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-actions{
    display: flex;
    flex-direction: column;
    margin: 0rem;
}

.otp-modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-align: center;
    position: relative;
}

.otp-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-light);
}

.otp-modal-title {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.otp-timer {
    margin: 15px 0;
    color: var(--primary-blue);
    font-weight: 500;
}

.otp-resend {
    color: var(--primary-blue);
    cursor: pointer;
    font-size: 14px;
}

.otp-resend:hover {
    text-decoration: underline;
}

/* Personal Info Form Styles */
.form-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn 0.5s ease;
}

.form-title {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-col {
    flex: 1 0 calc(50% - 20px);
    margin: 0 10px 20px;
    min-width: 200px;
}

.faculty-toggle {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.faculty-toggle label {
    margin-left: 10px;
    font-weight: 500;
}

/* Events Page Styles */
.events-container {
    width: 100%;
    max-width: 1000px;
}

.events-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    width: 300px;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 45px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.search-box i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.category-tabs {
    display: flex;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 20px;
    cursor: pointer;
    margin-right: 10px;
    margin-bottom: 10px;
    border-radius: 50px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.category-tab.active {
    background: var(--primary-blue);
    color: white;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.event-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.event-image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.event-details {
    padding: 20px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.event-category {
    background: rgba(52, 152, 219, 0.1);
    color: var(--primary-blue);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}

.event-action {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.event-action:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

/* Accommodation Page Styles */
.accommodation-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 40px;
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn 0.5s ease;
}

.vacancy-counter {
    position: absolute;
    top: 10px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-blue);
}

.accommodation-option {
    margin-bottom: 20px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.accommodation-option:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accommodation-option h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.accommodation-option p {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Styling for updated accommodation details */
.accommodation-option .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.accommodation-option .includes {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.4;
    min-height: 50px; /* Ensures consistent alignment */
}

/* Cart Page Styles */
.cart-container {
    width: 100%;
    max-width: 800px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.cart-item-info h3 {
    margin-bottom: 5px;
    color: var(--text-dark);
}

.cart-item-info p {
    color: var(--text-light);
    font-size: 14px;
}

.cart-item-price {
    margin: 1rem;
    font-weight: 600;
    color: var(--primary-green);
}

.cart-item-remove {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.cart-item-remove:hover {
    background: #c0392b;
}

.cart-total {
    text-align: right;
    margin-top: 30px;
    font-size: 18px;
    font-weight: 600;
}

.cart-actions {
    margin-top: 20px;
    text-align: right;
}

/* Footer Styles */
.footer {
    text-align: center;
    padding: 40px 0 20px;
    margin-top: 40px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.social-icons {
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    margin: 0 8px;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    color: var(--text-light);
    font-size: 14px;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--text-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s ease;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* --- MODAL STYLES (MODIFIED & NEW) --- */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 35px 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    text-align: center;
}

.modal-content h2 {
    margin-bottom: 5px;
}

.modal-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.modal-description {
    color: var(--text-light);
    margin-bottom: 30px;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}
.modal-close:hover {
    transform: rotate(90deg);
    color: var(--text-dark);
}

.team-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.team-option {
    padding: 25px;
    border-radius: var(--border-radius);
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.team-option h3 {
    margin-bottom: 8px;
    color: var(--text-dark);
}

.team-option p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.join-team-action {
    display: flex;
    align-items: center;
    gap: 10px;
}

.join-team-action .form-control {
    flex-grow: 1;
    text-align: center;
}

.join-team-action .btn {
    flex-shrink: 0;
    padding: 14px 20px; /* Adjust padding for the smaller button */
    width: auto; /* Allow button to size to its content */
}
/* Event card removal animation */
.event-card {
    transition: all 0.3s ease;
}

.event-card.removing {
    opacity: 0;
    transform: translateY(20px);
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/* No events message */
.no-events-message {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-style: italic;
    grid-column: 1 / -1;
}

/* Team status badges */
.team-status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

.team-status-pending {
    background-color: #ffeaa7;
    color: #d35400;
}

.team-status-approved {
    background-color: #d1f7c4;
    color: #27ae60;
}

.team-status-leader {
    background-color: #d6eaf8;
    color: #2980b9;
}

/* Container for the bottom navigation buttons (Back, Proceed, etc.)
*/
.page-actions {
    display: flex;                 /* Lays out children (the buttons) in a row */
    justify-content: space-between;  /* Pushes Back to the left and Proceed to the right */
    align-items: center;           /* Vertically aligns buttons in the middle */
    margin-top: 30px;              /* Adds some space above the buttons */
    gap: 15px;                     /* Adds a gap between buttons if they get close */
}

/* General styling for BOTH buttons inside the .page-actions container
  This removes any full-width behavior and sets a base size.
*/
.page-actions .btn {
    width: auto;                  /* Critical: Allows the button to size to its content */
    padding: 12px 25px;           /* Sets a nice default size */
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

/* Styling for the primary "Proceed" button
*/
.page-actions .btn-primary {
    background-color: #2697FF; /* Your blue color */
    color: white;
    /* You can make it slightly wider than the back button if you want */
    padding: 12px 40px;
}

.page-actions .btn-primary:hover {
    background-color: #1A88F0;
}

/* Styling for the secondary "Back" button
*/
.page-actions .btn-secondary {
    background-color: #f0f2f5; /* A light, neutral gray */
    color: #333;
}

.page-actions .btn-secondary:hover {
    background-color: #e1e4e8;
}


.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px; /* Reduced gap for better fit */
}

.main-nav .nav-link {
    text-decoration: none;
    color: var(--primary-dark-blue);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-green);
    transition: width 0.3s ease;
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
    color: var(--primary-green);
}

.main-nav .nav-link:hover::after,
.main-nav .nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments for the navbar if needed */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-nav ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .main-nav .nav-link {
        font-size: 14px;
    }
}


/* Styling for Header Greeting & Token */
.header-greeting {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 5px;
}

.token-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.token-id-display {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 8px;
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.6);
    font-family: 'Courier New', Courier, monospace;
    letter-spacing: 1px;
}

/* Styling for Team Info in My Events */
.my-events-team-info {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.cart-item-status {
    text-align: right;
}

/* Styling for Inactive Payment Button */
.btn.inactive {
    background-color: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}
.btn.inactive:hover {
    background-color: #bdc3c7;
    transform: none;
}

/* Styling for the secondary "Back" or "Action" button */
.page-actions .btn-secondary {
    background-color: #e8f5e9; /* A light green */
    color: #27ae60; /* Dark green text */
    font-weight: 600;
}

.page-actions .btn-secondary:hover {
    background-color: #d1f7c4;
}

/* Actionable Toast Notification */
.toast.actionable {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-content p {
    margin: 0;
    font-size: 14px;
}

.toast-content strong {
    font-size: 16px;
    color: var(--primary-green);
}

.toast-actions button {
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    margin-left: 10px;
    cursor: pointer;
    color: white;
    font-weight: 500;
}

.toast-actions .btn-accept {
    background-color: var(--primary-green);
}

.toast-actions .btn-decline {
    background-color: #e74c3c;
}

/* --- Notification Panel Styles --- */
.notifications-panel {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 350px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    z-index: 2000;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

.notification-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    margin-bottom: 10px;
}
.notification-item:last-child {
    margin-bottom: 0;
}

.notification-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 14px;
}
.notification-item strong {
    font-weight: 600;
    color: var(--primary-blue);
}

.notification-actions {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}
.notification-actions button {
    flex-grow: 1;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    cursor: pointer;
    color: white;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}
.notification-actions .btn-accept {
    background-color: var(--primary-green);
}
.notification-actions .btn-decline {
    background-color: #e74c3c;
}


/* --- Faculty Dashboard Enhancements --- */

/* Increases the space between each student's card */
#student-list .cart-item {
    margin-bottom: 25px;
    padding: 25px;
}

/* Increases the font size of the student's name and college */
#student-list .cart-item-info h3 {
    font-size: 2rem;
    margin-bottom: 8px;
}

/* Increases the font size of the student's email */
#student-list .cart-item-info p {
    font-size: 1rem;
}

/* Increases the font size of the registered items list */
.student-cart-items li {
    margin: 1rem;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Increases the font size of the "Total" amount */
#student-list .cart-item-price {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

/* Increases the font size of the "Select" label */
.faculty-student-select label {
    font-size: 0.95rem;
}

.page-actions-right {
    display: flex;
    gap: 15px; /* Adds space between the buttons */
}

/* --- Password Visibility Toggle --- */
.password-wrapper {
    position: relative;
}

.password-wrapper .toggle-password {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--text-light);
}

/* --- Team Size Warning Message --- */
.team-size-warning {
    color: #e67e22; /* Orange color for warning */
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 10px;
}

/* CHANGE [2]: Style for the disabled payment button */
.btn.disabled {
    background-color: #a0a0a0;
    cursor: not-allowed;
    pointer-events: all !important; /* Allow clicks to show the toast */
}

/* CHANGE [3]: Styles for the price note */
.price-note {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

/* CHANGE [5]: Styles for the new Dashboard */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.dashboard-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}
.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.dashboard-card i {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}
.dashboard-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.dashboard-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}
.dashboard-card.disabled {
    background-color: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.7;
}
.dashboard-card.disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.dashboard-card.disabled i {
    color: #999;
}

/* CHANGE [7]: Style for the Rulebook button */
.event-rulebook {
    padding: 10px 15px; /* Match the other button's size */
    text-decoration: none;
}
.event-meta.mt-20 {
    display: flex;
    gap: 10px; /* Add some space between buttons */
}

/* CHANGE [9]: Styles for the Scroll-to-Bottom Button */
#scroll-to-bottom-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
}
#scroll-to-bottom-btn.show {
    opacity: 1;
    visibility: visible;
}

/* --- ADD THIS TO YOUR STYLE.CSS FILE --- */

/* Style for highlighting the current user in a team list */
.team-member-list li.current-user {
    background-color: rgba(52, 152, 219, 0.15); /* Light blue highlight */
    font-weight: 600;
    color: var(--text-dark);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(52, 152, 219, 0.3);
}