/*
==================================
main.css
Stylesheet for Events For Employees
Last Updated: 2025-08-18
==================================
*/

/* --- 1. Global & Typography --- */
html, body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #FFFFFF;
    color: #212121;
    overflow-x: hidden; /* Prevents horizontal scroll from hidden mobile menu */
}

html {
    scroll-behavior: smooth;
}

h1, h2 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* --- 2. Layout Containers --- */
.site-wrapper {
    position: relative;
    overflow-x: hidden; /* Clips the hidden mobile menu */
}

.feature-page-container {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: -1rem auto 3rem auto;
}

/* --- 3. Navbar --- */
.navbar {
    background: #FFFFFF;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    width: 100%;
    max-width: 1300px;
    padding: 0 24px;
}

.navbar-logo {
    color: #00539B;
    font-size: 2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    text-align: center;
}

.nav-item {
    height: 80px;
}

.nav-link {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    color: #212121;
    border-bottom: 4px solid transparent;
    box-sizing: border-box;
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
    color: #00539B;
    transform: translateY(-2px);
    border-bottom-color: #00539B;
}

.logout-form {
    height: 100%;
    display: flex;
    align-items: center;
}

.logout-form button.nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

/* Hide hamburger menu trigger on desktop */
.nav-toggle {
    display: none;
}

/* --- 4. Forms & Buttons --- */
.form-wrapper {
    max-width: 450px;
    margin: 2rem auto;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.form-wrapper h2 {
    margin-top: 0;
    font-size: 2rem;
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-field label {
    display: block;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="password"],
.form-field input[type="number"],
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
}

.form-field select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23212121%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 10px auto;
}

.form-field .help-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9em;
    color: #555;
}

.form-errors {
    background-color: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
    text-align: left;
}

.form-footer-link {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    font-size: 0.9em;
}

.form-footer-link a {
    color: #00539B;
    font-weight: bold;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    border: 1px solid #ddd;
    -webkit-box-shadow: 0 0 0 30px white inset !important;
    -webkit-text-fill-color: #212121 !important;
    transition: background-color 5000s ease-in-out 0s;
}

.btn-pricing {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background-color: #00539B;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-decoration: none;
}

.btn-pricing:hover {
    background-color: #00427A;
}

/* --- 5. Homepage Specific --- */
.banner-container {
    color: white;
    height: 50vh;
    position: relative;
    overflow: hidden;
    background-color: #212121;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    animation: bannerFade 20s infinite;
    background-size: cover;
    background-position: center;
}

.banner-slide:nth-child(1) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?concert,crowd');
    animation-delay: 0s;
}
.banner-slide:nth-child(2) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?stadium,sports');
    animation-delay: 5s;
}
.banner-slide:nth-child(3) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?office,team');
    animation-delay: 10s;
}
.banner-slide:nth-child(4) {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://source.unsplash.com/random/1600x900/?technology,data');
    animation-delay: 15s;
}

@keyframes bannerFade {
    0%    { opacity: 0; }
    2.5%  { opacity: 1; }
    22.5% { opacity: 1; }
    25%   { opacity: 0; }
    100%  { opacity: 0; }
}

.banner-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.banner-slide p {
    font-size: 1.5rem;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    padding: 4rem 2rem;
    background-color: #FFFFFF;
}

.stat-card {
    text-align: center;
    padding: 1rem;
}

.stat-card h2 {
    font-size: 3rem;
    color: #00539B;
    margin: 0;
}

.stat-card p {
    font-size: 1.2rem;
    color: #555;
    margin-top: 0.5rem;
}

.content-section {
    padding: 4rem 2rem;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #00539B;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.alt-background {
    background-color: #f8f9fa;
}

.pricing-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pricing-tier {
    border: 1px solid #ddd;
    padding: 2rem;
    border-radius: 8px;
    flex-basis: 210px;
    background-color: #fff;
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-10px);
}

.pricing-tier-popular {
    border: 2px solid #00539B;
}

.popular-badge {
    background-color: #00539B;
    color: #fff;
    padding: 0.4rem 1rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
}

/* --- 6. Features Page --- */
.responsive-pricing-table {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto 0 auto;
}

.plan-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    flex: 1;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.popular {
    border: 2px solid #00539B;
}

.plan-card .plan-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.plan-card.popular .plan-header {
    padding-top: 1.5rem;
}

.plan-card h3 {
    font-size: 1.8rem;
    margin: 0 0 0.5rem 0;
}

.plan-card .price {
    font-size: 1.5rem;
    color: #555;
    margin: 0;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

#password-criteria, #pass-match {
    font-size: 0.9em;
    margin-top: -0.5rem;
    padding-left: 0.5rem;
}

#password-criteria p, #pass-match {
    margin: 0.5rem 0;
    color: #888;
    transition: color 0.3s ease;
}

#password-criteria p.valid, #pass-match.valid {
    color: #28a745;
}

#password-criteria p.valid span::before, #pass-match.valid span::before {
    content: '✓';
    margin-right: 8px;
    font-weight: bold;
}

/* --- 7. Admin Dashboard --- */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
}

.dashboard-card {
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #212121;
}

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

.dashboard-icon {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 1rem;
}

.dashboard-card h3 {
    font-size: 1.5rem;
    color: #00539B;
    margin-bottom: 0.5rem;
}

.dashboard-card.disabled {
    background-color: #f8f9fa;
    color: #aaa;
    cursor: not-allowed;
}

.dashboard-card.disabled:hover {
    transform: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.dashboard-card.disabled h3 {
    color: #aaa;
}

.table-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

.styled-table thead tr {
    background-color: #00539B;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #f8f9fa;
}

.styled-table tbody tr:last-of-type {
    border-bottom: 2px solid #00539B;
}

.styled-table tbody tr:hover {
    background-color: #e9ecef;
}

.action-buttons a {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 0.9em;
    font-weight: bold;
    text-align: center;
    margin-right: 5px;
}

.btn-approve {
    background-color: #28a745;
}

.btn-deny {
    background-color: #dc3545;
}

.no-requests-message {
    text-align: center;
    padding: 3rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
}

.request-list-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.request-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
}

.request-info {
    display: flex;
    align-items: center;
}

.request-name {
    font-weight: bold;
}

.request-details {
    color: #555;
    font-size: 0.9em;
}

.request-actions {
    display: flex;
    gap: 0.5rem;
}

.status-badge {
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: bold;
    text-transform: uppercase;
}

.status-badge.approved {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.denied {
    background-color: #f8d7da;
    color: #721c24;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.calendar-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.fc-event-title {
    white-space: normal;
}

.fc-daygrid-event {
    padding: 2px 4px;
}

.pending-request-badge {
    background-color: #dc3545;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 0.8em;
    font-weight: bold;
    margin-left: 8px;
    display: inline-block;
    line-height: 1;
}

/* --- 8. Employee Dashboard --- */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.event-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.event-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.event-info {
    padding: 1.5rem;
    flex-grow: 1;
}

.event-info h3 {
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.event-date {
    margin: 0;
    color: #555;
    font-size: 0.9em;
}

.event-actions {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.btn-event-card {
    display: block;
    width: 100%;
    padding: 0.8rem 1rem;
    background-color: #00539B;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-event-card:hover {
    background-color: #00427A;
}

.btn-event-card[disabled] {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

.cancel-link {
    display: block;
    padding: 0.8rem 1rem;
    background-color: #dc3545;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 0.5rem;
}

.cancel-link:hover {
    background-color: #c82333;
    color: #fff;
}

.month-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 0 2rem;
}

.month-header {
    font-size: 2rem;
    color: #00539B;
    margin: 0;
    text-align: center;
}

.month-nav-link {
    font-weight: bold;
    color: #00539B;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.month-nav-link:hover {
    background-color: #f0f0f0;
}

/* --- 9. Company Feed --- */
.feed-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.post-card {
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.post-trigger-card {
    background: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.post-trigger-input {
    background-color: #f0f2f5;
    border-radius: 20px;
    padding: 10px 15px;
    color: #65676b;
    cursor: pointer;
    transition: background-color 0.2s;
}

.post-trigger-input:hover {
    background-color: #e4e6e9;
}

.post-date {
    font-size: 0.9em;
    color: #555;
    margin-top: -10px;
}

.post-caption {
    font-size: 1.1em;
    line-height: 1.6;
}

.post-media {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
}

.post-stats {
    font-size: 0.9em;
    color: #555;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 1rem;
}

.post-stats span {
    margin-right: 1rem;
}

.post-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.action-btn {
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: #e0e0e0;
}

.like-btn.liked {
    background-color: #00539B;
    color: #fff;
    border-color: #00539B;
}

.comments-section {
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.comment {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.comment p {
    margin: 0.3rem 0;
}

.comment-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.comment-form input {
    flex-grow: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.comment-form button {
    background: #00539B;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 0.5rem 1.2rem;
    cursor: pointer;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-overlay.is-visible {
    display: flex;
}

.modal-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    width: 100%;
    max-width: 500px;
    position: relative;
}

.modal-content h3 {
    text-align: center;
    margin-top: 0;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 15px;
    background: #f0f2f5;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 1.5rem;
    color: #65676b;
    cursor: pointer;
    line-height: 1;
}

.custom-file-buttons {
    display: flex;
    gap: 1rem;
    border: 1px solid #ddd;
    padding: 0.8rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.custom-file-button {
    font-weight: bold;
    color: #444;
    cursor: pointer;
}

.modal-overlay.lightbox {
    background-color: rgba(0, 0, 0, 0.85);
}

#lightbox-image {
    display: block;
    max-width: 90vw;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}

.modal-overlay.lightbox .close-button {
    color: #fff;
    background: transparent;
    font-size: 3rem;
    font-weight: lighter;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #00539B;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- 10. Company Settings --- */
.settings-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.settings-panel {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 2rem;
}

.settings-panel h3 {
    text-align: center;
    margin-top: 0;
}

.preview-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
}

.preview-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 1rem;
}

.preview-logo {
    font-weight: bold;
    font-size: 1.5rem;
}

.preview-logo-img {
    height: 30px;
    width: auto;
}

.preview-link {
    font-weight: 500;
}

.preview-card {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem;
    text-align: center;
}

.preview-image {
    height: 80px;
    background-color: #e9ecef;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.preview-title {
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.preview-button {
    width: 100%;
    padding: 0.6rem;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}

/* --- 11. Footer --- */
.footer {
    background-color: #212121;
    color: #FFFFFF;
    text-align: center;
    padding: 2rem 1rem;
}

.footer-links {
    margin-bottom: 1rem;
}

.footer-link {
    color: #FFFFFF;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #00539B;
}

.footer-link:not(:last-child)::after {
    content: '|';
    margin-left: 1rem;
    color: #555;
    pointer-events: none;
}

.footer-copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #aaa;
}

/* --- 12. Mobile Responsiveness --- */
@media screen and (max-width: 960px) {
    /* --- Navbar Mobile Styles --- */
    .nav-menu {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        transform: translateX(-100%);
        z-index: 998;
    }

    .nav-menu.is-open {
        transform: translateX(0);
    }

    .nav-item {
        height: auto;
    }

    .nav-link {
        text-align: center;
        padding: 1rem;
        width: 100%;
        display: block;
        -webkit-tap-highlight-color: transparent;
    }

    .nav-link:hover {
        background-color: #f8f9fa;
        color: #00539B;
        border-bottom: none;
        transform: none;
    }

    .navbar-logo {
        position: relative;
        z-index: 1001;
    }

    /* --- Hamburger Menu Icon Styles --- */
    .nav-toggle {
        display: block;
        position: absolute;
        top: 40px;
        right: 35px;
        transform: translateY(-50%);
        cursor: pointer;
        z-index: 1000;
        background: transparent;
        border: none;
        width: 25px;
        height: 20px;
    }

    .nav-toggle span,
    .nav-toggle span::before,
    .nav-toggle span::after {
        display: block;
        background-color: #212121;
        position: absolute;
        height: 2px;
        width: 25px;
        transition: all 0.3s ease-in-out;
    }

    .nav-toggle span::before,
    .nav-toggle span::after {
        content: '';
    }

    .nav-toggle span::before {
        top: -8px;
    }
    
    .nav-toggle span::after {
        top: 8px;
    }

    .nav-toggle.is-open span {
        background-color: transparent;
    }
    .nav-toggle.is-open span::before {
        transform: rotate(45deg);
        top: 0;
    }
    .nav-toggle.is-open span::after {
        transform: rotate(-45deg);
        top: 0;
    }
    
    /* --- Other Mobile Styles --- */
    .responsive-pricing-table {
        flex-direction: column;
    }

    .invite-container {
        grid-template-columns: 1fr;
    }

    .settings-layout {
        grid-template-columns: 1fr;
    }
}