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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        /* Basic Navigation Styles */

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #667eea;
}

.create-event-btn {
    background: #2C5AA0;
    color: white !important;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

.create-event-btn:hover {
    background: #5a67d8;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #333;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* Login Container Styles */
.login-container {
    position: relative;
    margin-left: 20px;
}

/* Login Button Styles */
.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    text-decoration: none;
    color: white;
}

.login-btn:active {
    transform: translateY(0);
}

.login-icon {
    transition: transform 0.3s ease;
}

.login-btn:hover .login-icon {
    transform: translateX(2px);
}
.logo img{
    width: 50px;
   
}
/* User Menu Styles */
.user-menu {
    position: relative;
}

.user-profile-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

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

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}
.user-menu small{
    color: #999;
    font-size: 11px;
}

.dropdown-icon {
    transition: transform 0.3s ease;
    color: #666;
}

.user-profile-btn:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* User Dropdown Styles */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 16px;
    height: 16px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: none;
    border-right: none;
    transform: rotate(45deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:first-child {
    border-radius: 12px 12px 0 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: #667eea;
    text-decoration: none;
}

.dropdown-item.logout:hover {
    background: #fee;
    color: #e74c3c;
}

.dropdown-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.dropdown-divider {
    height: 1px;
    background: #eee;
    margin: 8px 0;
}
.signup-btn,.signup-btn:hover{
    color:#fff;
    text-decoration: none;;

}
button[type="submit"], button[type="submit"]:hover{
    background: #2C5AA0;
    color: white !important;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
}
button[type="submit"]:hover{
    opacity: .8;
}
.error {
    color: red;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 80px 30px 30px;
        gap: 0;
        transition: right 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
        margin-top: 20px;
    }
    
    .nav-links a {
        display: block;
        padding: 15px 0;
        color: #333;
        font-size: 16px;
        border-bottom: none;
    }
    
    .nav-links a:hover {
        color: #667eea;
        background: #f8f9fa;
        padding-left: 10px;
    }
    
    .create-event-btn {
        width: 100%;
        padding: 12px 16px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .login-container {
        margin-left: 0;
        width: 100%;
    }
    
    .login-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        font-size: 16px;
        color: #fff !important;
        text-align: center;
    }
    
    .login-btn span {
        display: inline;
    }
    
    .user-profile-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }
    
    .user-name {
        display: inline;
    }
    
    .user-dropdown {
        position: static;
        width: 100%;
        margin-top: 15px;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .user-dropdown::before {
        display: none;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .user-dropdown {
        background: #fff;
        text-align:center;
        border-color: #4a5568;
    }
    
    .user-dropdown::before {
        /* background: #2d3748; */
        border-color: #4a5568;
    }
    
    .dropdown-item {
        color: #e2e8f0;
    }
    
    .dropdown-item:hover {
        /* background: #4a5568; */
        color: #667eea;
    }
    
    .dropdown-divider {
        background: #4a5568;
    }
}

.event-location a, .meta-item a {
    color: #666;
}

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

        /* Header */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 10px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: #2c5aa0;
            letter-spacing: -0.5px;
        }

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

        .nav-links a {
            text-decoration: none;
            color: #666;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #2c5aa0;
        }

        /* .create-event-btn {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        } */

        /* .create-event-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
            background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
        } */

        /* Main Content */
        .main-content {
            padding: 2rem 0;
        }

        .page-header {
            text-align: center;
            margin-bottom: 2rem;
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .page-header h1 {
            font-size: 2.5rem;
            color: #2c5aa0;
            margin-bottom: 0.5rem;
        }

        .page-header p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* City Selection */
        .city-selector {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }

        .city-tabs {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .city-tab {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 0.75rem 1.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #495057;
        }

        .city-tab:hover {
            background: #e9ecef;
            border-color: #2c5aa0;
        }

        .city-tab.active {
            background: #2c5aa0;
            color: white;
            border-color: #2c5aa0;
        }

        /* Events Table */
        .events-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .events-header {
            background: #2c5aa0;
            color: white;
            padding: 1.5rem;
            text-align: center;
        }

        .events-header h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .events-header p {
            opacity: 0.9;
        }

        .events-table {
            width: 100%;
            border-collapse: collapse;
        }

        .events-table th {
            background: #f8f9fa;
            padding: 1rem;
            text-align: left;
            font-weight: 600;
            color: #495057;
            border-bottom: 2px solid #e9ecef;
        }

        .events-table td {
            padding: 1rem;
            border-bottom: 1px solid #e9ecef;
            vertical-align: top;
        }

        .events-table tbody tr:hover {
            background: #f8f9fa;
        }

        .event-type {
            background: #e3f2fd;
            color: #1976d2;
            padding: 1px 8px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            display: inline-block;
            /* margin-bottom: 0.5rem; */
        }

        .event-title , .event-title a{
            font-weight: 600;
            color: #2c5aa0;
            margin-bottom: 0.25rem;
            font-size: 16px;
            text-decoration: none;
        }

        .event-location {
            color: #666;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .event-date {
            font-weight: 600;
            color: #495057;
        }

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

        .event-cost {
            font-weight: 600;
            color: #28a745;
        }

        .event-cost.paid {
            color: #dc3545;
        }

        .contact-info {
            font-size: 0.85rem;
            color: #666;
        }

        .contact-info a {
            color: #2c5aa0;
            text-decoration: none;
        }

        .contact-info a:hover {
            text-decoration: underline;
        }

        .signup-btn {
            background: #2c5aa0;
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .signup-btn:hover {
            background: #1e4084;
            transform: translateY(-1px);
        }
        .info-item a{
            color:#333;
            text-decoration: none;
        }
        .btn-primary{
        color: #fff !important;
        text-decoration: none;
        background: #2C5AA0;
        padding: 5px 17px;
        border-radius: 9px;
        }
        .btn:hover{
            color:#fff;
        }
        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
        }

        .modal-content {
            background-color: white;
            margin: 5% auto;
            border-radius: 10px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            animation: modalSlideIn 0.3s ease-out;
        }
       #viewAttendeesModal .modal-content {
            width: 700px;
        }
        @keyframes modalSlideIn {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .modal-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e4084 100%);
            color: white;
            padding: 1.5rem 2rem;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .modal-header h3 {
            margin: 0;
            font-size: 1.3rem;
        }

        .close {
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .close:hover {
            opacity: 1;
        }

        .modal-form {
            padding: 2rem;
        }

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

        .modal-form-group label {
            display: block;
            font-weight: 600;
            color: #495057;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .modal-form-group input,
        .modal-form-group textarea {
            width: 100%;
            padding: 0.75rem;
            border: 2px solid #e9ecef;
            border-radius: 6px;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-sizing: border-box;
        }

        .modal-form-group input:focus,
        .modal-form-group textarea:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

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

        .modal-buttons {
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            margin-top: 2rem;
        }

        .modal-btn-cancel,
        .modal-btn-submit {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-btn-cancel {
            background: #6c757d;
            color: white;
        }

        .modal-btn-cancel:hover {
            background: #5a6268;
        }

        .modal-btn-submit {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e4084 100%);
            color: white;
        }

        .modal-btn-submit:hover {
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
        }

        .modal-success {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1rem;
            display: none;
        }

        /* Create Event Modal Specific Styles */
        .create-event-modal {
            max-width: 700px;
            max-height: 90vh;
            overflow-y: auto;
        }

        .create-event-header {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }

        .create-event-form {
            padding: 2rem;
        }

        .create-event-form .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .create-event-checkbox {
            grid-column: 1 / -1;
            margin-top: 0.5rem;
        }

        .create-submit {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }

        .create-submit:hover {
            background: linear-gradient(135deg, #20c997 0%, #28a745 100%);
            box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
        }

        .city-events {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .city-events.active {
            display: block;
        }

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

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .page-header h1 {
                font-size: 2rem;
            }
            
            .events-table {
                font-size: 0.9rem;
            }
            
            .events-table th,
            .events-table td {
                padding: 0.75rem 0.5rem;
            }
            
            .city-tabs {
                flex-direction: column;
                align-items: center;
            }
            
            .city-tab {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }
            
            .create-event-form .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .create-event-modal {
                margin: 2% auto;
                width: 95%;
                max-height: 95vh;
            }
        }

        /* Mobile Create Event Button */
        @media (max-width: 768px) {
            .mobile-create-btn {
                position: fixed;
                bottom: 20px;
                right: 20px;
                background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
                color: white;
                border: none;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                font-size: 1.5rem;
                cursor: pointer;
                box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
                z-index: 999;
                transition: all 0.3s ease;
            }
            
            .mobile-create-btn:hover {
                transform: scale(1.1);
                box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5);
            }
        }

        /* Signup Form */
        .signup-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            margin-top: 2rem;
            overflow: hidden;
        }

        .signup-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e4084 100%);
            color: white;
            padding: 2rem;
            text-align: center;
        }

        .signup-header h2 {
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .signup-header p {
            opacity: 0.9;
            font-size: 1.1rem;
        }

        .signup-form {
            padding: 2rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            /* margin-bottom: 1.5rem; */
        }
        .form-row-col3{
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-weight: 600;
            color: #495057;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 0 10px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2c5aa0;
            box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
        }

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

        .checkbox-group {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 0.5rem;
        }

        .checkbox-label {
            display: flex;
            align-items: center;
            cursor: pointer;
            font-weight: 400 !important;
            margin-bottom: 0 !important;
            position: relative;
            padding-left: 2rem;
        }

        .checkbox-label input[type="checkbox"] {
            position: absolute;
            opacity: 0;
            cursor: pointer;
            height: 0;
            width: 0;
        }

        .checkmark {
            position: absolute;
            left: 0;
            height: 18px;
            width: 18px;
            background-color: #f8f9fa;
            border: 2px solid #e9ecef;
            border-radius: 4px;
            transition: all 0.3s ease;
        }

        .checkbox-label:hover input ~ .checkmark {
            background-color: #e9ecef;
        }

        .checkbox-label input:checked ~ .checkmark {
            background-color: #2c5aa0;
            border-color: #2c5aa0;
        }

        .checkmark:after {
            content: "";
            position: absolute;
            display: none;
        }

        .checkbox-label input:checked ~ .checkmark:after {
            display: block;
        }

        .checkbox-label .checkmark:after {
            left: 5px;
            top: 1px;
            width: 6px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

        .checkbox-label.newsletter,
        .checkbox-label.privacy {
            grid-column: 1 / -1;
            margin-top: 0.5rem;
        }

        .privacy-link {
            color: #2c5aa0;
            text-decoration: none;
        }

        .privacy-link:hover {
            text-decoration: underline;
        }

        .submit-btn {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e4084 100%);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1rem;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(44, 90, 160, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .success-message {
            background: #d4edda;
            border: 1px solid #c3e6cb;
            color: #155724;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            display: none;
        }
.city-tabs .nav-link {
  font-weight: bold;
  color: #333;
 border: 1px solid #2C5AA0;
border-bottom: none;
}

.city-tabs .nav-link.active {
  background-color: #2C5AA0;
  color: #fff;
}

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 1rem;
            }
            
            .checkbox-group {
                grid-template-columns: 1fr;
            }
            
            .signup-form {
                padding: 1.5rem;
            }
        }





        .form-header {
            background: #2c5aa0;
            color: white;
            padding: 24px 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .form-header h1 {
            font-size: 20px;
            font-weight: 600;
        }

        .member-badge {
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 12px;
            border-radius: 16px;
            font-size: 13px;
        }


       .form-container {
    display: block;
    width: 100%;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    border-top: 1px solid #1565c0;
    
}
.btn-draft {
    background-color: #2196f3;
    color: white;
}

.btn-publish {
    background-color: #1565c0;
    color: white;
}

.btn-draft:hover,
.btn-publish:hover {
    opacity: 0.9;
}

.btn-draft:disabled,
.btn-publish:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}






        .form-section {
            padding: 32px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 500;
            color: #374151;
            font-size: 14px;
        }

        .form-control {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            font-size: 14px;
            transition: border-color 0.2s;
        }

        .form-control:focus {
            outline: none;
            border-color: #1976d2;
            box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
        }

        .event-name {
            font-size: 18px;
            font-weight: 600;
            padding: 16px 14px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            
        }

        .datetime-row {
            display: grid;
            grid-template-columns: 1fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        .datetime-input {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 12px 14px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            background: white;
            cursor: pointer;
            transition: border-color 0.2s;
        }

        .datetime-input:hover {
            border-color: #1976d2;
        }

        .datetime-input input {
            border: none;
            background: transparent;
            font-size: 14px;
            cursor: pointer;
        }

        .datetime-input input::-webkit-calendar-picker-indicator {
            cursor: pointer;
            filter: invert(0.5);
        }

        .datetime-input input::-webkit-calendar-picker-indicator:hover {
            filter: invert(0.3);
        }

        .custom-picker {
            position: relative;
        }

        .picker-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 1000;
            display: none;
            max-height: 200px;
            overflow-y: auto;
        }

        .picker-dropdown.show {
            display: block;
        }

        .time-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 1px;
            background: #e5e7eb;
        }

        .time-option {
            padding: 8px 12px;
            text-align: center;
            font-size: 13px;
            background: white;
            cursor: pointer;
            transition: background-color 0.2s;
        }

        .time-option:hover {
            background: #f3f4f6;
        }

        .time-option.selected {
            background: #1976d2;
            color: white;
        }

        .picker-header {
            padding: 12px;
            font-weight: 500;
            background: #f9fafb;
            border-bottom: 1px solid #e5e7eb;
            font-size: 13px;
            color: #374151;
        }

        .repeat-checkbox {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-top: 12px;
        }

        .repeat-checkbox input[type="checkbox"] {
            width: 16px;
            height: 16px;
        }

        .textarea {
            min-height: 80px;
            resize: vertical;
        }

        .ticket-section {
            background: #f9fafb;
            padding: 16px;
            border-radius: 6px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border: 1px solid #e5e7eb;
        }

        .ticket-label {
            font-weight: 500;
            color: #374151;
        }

        .ticket-price {
            color: #059669;
            font-weight: 600;
        }

        .activity-btn {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            background: white;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
            color: #6b7280;
        }

        .preview-section {
            background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%);
            padding: 32px 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .preview-card {
            width: 200px;
            height: 250px;
            background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            font-weight: 600;
            text-align: center;
            box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
            position: relative;
            overflow: hidden;
        }

        .preview-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.2) 0%, transparent 50%);
        }

        .preview-text {
            position: relative;
            z-index: 1;
            line-height: 1.2;
        }

        .image-controls {
            margin-top: 16px;
            text-align: center;
        }

        .recommended-size {
            font-size: 11px;
            color: #6b7280;
            margin-bottom: 12px;
        }

        .change-image-btn {
            background: #1976d2;
            color: white;
            border: none;
            padding: 8px 16px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
        }

        .action-buttons {
            padding: 24px 32px;
            background: #f9fafb;
            display: flex;
            gap: 12px;
            justify-content: flex-end;
            border-top: 1px solid #e5e7eb;
        }

        .btn {
            padding: 10px 20px;
            border-radius: 6px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s;
        }

        .btn-draft {
            background: white;
            color: #374151;
            border: 1px solid #d1d5db;
        }

        .btn-draft:hover {
            background: #f9fafb;
        }

        .btn-publish {
            background: #1976d2;
            color: white;
            border: 1px solid #1976d2;
        }

        .btn-publish:hover {
            background: #1565c0;
        }

        @media (max-width: 768px) {
            .form-container {
                grid-template-columns: 1fr;
            }
            
            .datetime-row {
                grid-template-columns: 1fr;
            }
        }
         .placeholder {
            background-color: transparent !important;
            color:rgb(51, 51, 51);
            opacity: 1 !important;
        } 



        .picker-dropdown {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.time-slot {
    padding: 8px;
    border: 1px solid #ddd;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    background: #f9f9f9;
}

.time-slot:hover {
    background-color: #007bff;
    color: white;
}
span.req{
    color:red;

}
.form-message {
    margin-top: 20px;
    padding: 10px;
    font-weight: bold;
    display: none;
    border-radius: 5px;
}

.form-message.success {
    background-color: #e6ffed;
    color: #0f5132;
    border: 1px solid #a6d8a8;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #842029;
    border: 1px solid #f5c2c7;
}
.logo a{
    text-decoration: none;
    color:#2C5AA0;
    font-weight: bold;
}
.table-scroll-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.events-table {
    width: 100%;
    min-width: 800px; /* Adjust based on your actual column count */
    border-collapse: collapse;
}

/* Optional for better UX */
.table-scroll-container::-webkit-scrollbar {
    height: 6px;
}
.table-scroll-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

 @media (max-width: 768px) {
   .city-tabs .nav-link {
   
    border-bottom: solid 1px;
    border-radius: 10px;
}
    
}

/* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #212121 0%, #34495e 100%);
            color: #ecf0f1;
            padding: 3rem 0 1rem;
            margin-top: auto;
        }

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

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

        .footer-section h3 {
            color: #3498db;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .footer-section p, .footer-section li {
            color: #bdc3c7;
            margin-bottom: 0.5rem;
        }

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

        .footer-section a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #3498db;
        }

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

        .footer-brand h2 {
            color: #3498db;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
        }

        .cities-grid {
            display: block;
            
        } 
        .cities-grid ul, .footer-section ul{
            padding-left: 0px;
        }
        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(52, 152, 219, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: #3498db;
            transform: translateY(-2px);
            color:#fff !important;
        }

        .newsletter-signup {
            margin-top: 1rem;
        }

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

        .newsletter-input {
            flex: 1;
            padding: 0.75rem;
            border: 1px solid #34495e;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            color: #ecf0f1;
            font-size: 0.9rem;
        }

        .newsletter-input::placeholder {
            color: #95a5a6;
        }

        .newsletter-btn {
            padding: 0.75rem 1.5rem;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-size: 0.9rem;
            transition: background 0.3s ease;
        }

        .newsletter-btn:hover {
            background: #2980b9;
        }

        .footer-bottom {
            border-top: 1px solid #34495e;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer-bottom p {
            color: #95a5a6;
            font-size: 0.9rem;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            color: #95a5a6;
            font-size: 0.9rem;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #ecf0f1;
        }

        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

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

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                flex-wrap: wrap;
                justify-content: center;
            }

            .main-content h1 {
                font-size: 2rem;
            }
        }

        /* Icon styles using CSS shapes */
        .icon {
            width: 16px;
            height: 16px;
            display: inline-block;
            margin-right: 8px;
            vertical-align: middle;
        }

        .icon-location::before {
            content: "📍";
        }

        .icon-email::before {
            content: "✉️";
        }

        .icon-phone::before {
            content: "📞";
        }

        .icon-facebook::before {
            content: "📘";
        }

        .icon-twitter::before {
            content: "🐦";
        }

        .icon-instagram::before {
            content: "📷";
        }

        .icon-linkedin::before {
            content: "💼";
        }


.login-container > a{
    color:#fff !important;
}
.input-error-message {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 4px;
    display: none;
}
.form-loader {
    margin-top: 1rem;
    text-align: center;
    font-size: 1rem;
    color: #3498db;
}
.form-loader i {
    margin-right: 8px;
}


.events-filters {
  margin: 15px 20px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.events-filters label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.month-filter-form select {
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.month-filter-form select:hover {
  border-color: #0073aa; /* WordPress blue */
}

.month-filter-form select:focus {
  outline: none;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.newsletter-input{
    color: #fff !important;
}



