/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background-color: #FEF3E2;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Password Reset Page Styles */
.reset-password-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FEF3E2 0%, #F3C627 100%);
}

/* Action Handler Page Styles */
.action-handler-section {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FEF3E2 0%, #F3C627 100%);
}

.action-handler-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.action-handler-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reset-password-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.reset-password-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.reset-password-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
}

.reset-password-header p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.reset-password-form {
    text-align: left;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.password-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-container input {
    width: 100%;
    padding: 15px 50px 15px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.password-input-container input:focus {
    outline: none;
    border-color: #F3C627;
    box-shadow: 0 0 0 3px rgba(243, 198, 35, 0.1);
}

.password-toggle {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #F3C627;
}

.password-strength {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.strength-weak {
    color: #e74c3c;
}

.strength-fair {
    color: #f39c12;
}

.strength-good {
    color: #f1c40f;
}

.strength-strong {
    color: #27ae60;
}

.password-match {
    margin-top: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

.match-success {
    color: #27ae60;
}

.match-error {
    color: #e74c3c;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

.reset-password-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.reset-password-footer p {
    color: #666;
    font-size: 0.95rem;
}

.reset-password-footer a {
    color: #F3C627;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reset-password-footer a:hover {
    color: #2a2a2a;
}

/* Loading State */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #F3C627;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

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

.loading-state p {
    color: #666;
    font-size: 1.1rem;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 20px;
}

.success-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.success-state p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Error State */
.error-state {
    text-align: center;
    padding: 40px 20px;
}

.error-icon {
    font-size: 4rem;
    color: #e74c3c;
    margin-bottom: 20px;
}

.error-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.error-state p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(243, 198, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    overflow: visible;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 120px;
    transition: transform 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #2a2a2a;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2a2a2a;
    transition: width 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2a2a2a;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F3C623 0%, #FFB22C 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #2a2a2a;
    border: 2px solid #2a2a2a;
}

.btn-secondary:hover {
    background: #2a2a2a;
    color: #FEF3E2;
    transform: translateY(-2px);
}

/* Phone Mockup */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-screen {
    width: 280px;
    height: 500px;
    background: #FEF3E2;
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px;
}

.event-card {
    background: #FEF3E2;
    border-radius: 12px;
    padding: 15px;
    border-left: 4px solid #F3C623;
}

.event-time {
    font-size: 0.8rem;
    color: #F3C623;
    font-weight: 600;
    margin-bottom: 5px;
}

.event-title {
    font-weight: 600;
    margin-bottom: 5px;
    color: #2a2a2a;
}

.event-location {
    font-size: 0.9rem;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #FEF3E2;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.feature i {
    font-size: 2.5rem;
    color: #F3C623;
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #F3C623 0%, #FFB22C 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Download Page Styles */
.download-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F3C623 0%, #FFB22C 100%);
    text-align: center;
}

.download-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.download-content p {
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.8);
    margin-bottom: 3rem;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.download-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.download-icon {
    font-size: 3rem;
    color: #F3C623;
    margin-bottom: 1rem;
}

.download-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.download-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.download-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1rem;
}

.coming-soon {
    font-size: 0.9rem;
    color: #F3C623;
    font-weight: 600;
}

.download-info {
    max-width: 600px;
    margin: 0 auto;
}

.download-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 8px;
    color: #2a2a2a;
}

.requirement i {
    font-size: 1.2rem;
    color: #F3C623;
}

/* Features Preview */
.features-preview {
    padding: 80px 0;
    background: #FEF3E2;
}

.features-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 3rem;
}

.features-preview .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2.5rem;
    color: #F3C623;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Newsletter */
.newsletter {
    padding: 60px 0;
    background: #333;
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    min-width: 200px;
}

.newsletter-form button {
    padding: 12px 24px;
    white-space: nowrap;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #F3C623 0%, #FFB22C 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(42, 42, 42, 0.8);
}

.contact-content {
    padding: 80px 0;
    background: #FEF3E2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #F3C623;
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.2rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.social-contact h4 {
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #666;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #F3C623;
}

.social-link i {
    font-size: 1.2rem;
}

/* Contact Form */
.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 2rem;
}

.contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background-color: #fff;
    color: #2a2a2a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F3C623;
    background-color: #fff;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #FEF3E2;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #2a2a2a;
    color: #FEF3E2;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #F3C623;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(254, 243, 226, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(254, 243, 226, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #F3C623;
}

.footer-bottom {
    border-top: 1px solid rgba(254, 243, 226, 0.2);
    padding-top: 2rem;
    text-align: center;
    color: rgba(254, 243, 226, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-image {
        height: 32px;
        max-width: 100px;
    }
    
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(243, 198, 35, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.2);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .download-options {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: auto;
    }

    .requirements {
        grid-template-columns: 1fr;
    }

    /* Password Reset Responsive */
    .reset-password-section {
        padding: 100px 20px 60px;
    }

    .reset-password-card {
        padding: 30px 20px;
    }

    .reset-password-header h1 {
        font-size: 2rem;
    }

    .success-state h3,
    .error-state h3 {
        font-size: 1.5rem;
    }

    .success-icon,
    .error-icon {
        font-size: 3rem;
    }

    /* Action Handler Responsive */
    .action-handler-section {
        padding: 100px 20px 60px;
    }

    .action-handler-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* User Menu Styles */
.user-menu {
    display: flex;
    align-items: center;
    position: relative;
    margin-left: 20px;
    z-index: 1001;
    overflow: visible;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #2a2a2a;
    font-weight: 500;
}

.user-menu-trigger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.user-menu-trigger i {
    font-size: 1.2rem;
    color: #2a2a2a;
}

.user-menu-trigger .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #2a2a2a;
}

.user-menu-dropdown.show .fa-chevron-down {
    transform: rotate(180deg);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background: #2a2a2a;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    min-width: 280px;
    z-index: 9999;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease;
    color: white;
}

.user-menu-dropdown.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0);
}

.user-info {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px 8px 0 0;
}

.user-info span {
    display: block;
    font-size: 0.9rem;
    color: white;
}

.user-info span:first-child {
    color: white;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-type {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 500;
}

.account-type.business-account {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.account-type.personal-account {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.user-menu-items {
    padding: 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-menu-item:last-child {
    border-bottom: none;
}

.user-menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.user-menu-item i {
    width: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.user-menu-item:hover i {
    color: white;
}

.login-section {
    margin-left: 20px;
}

.btn-login {
    background: rgba(255, 255, 255, 0.1);
    color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Mobile responsive for user menu */
@media (max-width: 768px) {
    .user-menu {
        margin-left: 10px;
    }
    
    .user-menu-trigger {
        padding: 6px 10px;
        font-size: 0.9rem;
    }
    
    .user-menu-dropdown {
        left: 50%;
        min-width: 220px;
    }
    
    .login-section {
        margin-left: 10px;
    }
    
    .btn-login {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* Status Badge Styles for Event Upload Page */
.status-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-draft {
    background-color: #E5E7EB;
    color: #374151;
}

.status-pending {
    background-color: #FEF3C7;
    color: #92400E;
}

.status-approved {
    background-color: #D1FAE5;
    color: #065F46;
}

.status-rejected {
    background-color: #FEE2E2;
    color: #991B1B;
}

.status-published {
    background-color: #DBEAFE;
    color: #1E40AF;
} 