/* Components CSS - Form inputs, buttons, containers, and reusable components */

/* Search form container */
.search-container {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 600px;
}

.search-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

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

.search-input, .search-select {
    width: 100%;
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: border-color 0.2s ease;
    background: white;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: #FFD700;
}

.location-status {
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* Event categories */
.categories-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.categories-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
    width: 100%;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-shrink: 0;
}

.category-checkbox {
    width: 18px;
    height: 18px;
    accent-color: #FFD700;
}

.category-label {
    font-size: 14px;
    color: #000;
    cursor: pointer;
    font-weight: 500;
}

/* Search button */
.search-button {
    background: #FFD700;
    border: 2px solid #000;
    padding: 18px 36px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
    width: 100%;
}

.search-button:hover {
    background: #000;
    color: #FFD700;
}

.search-button:active {
    transform: translateY(1px);
}

/* Sign In Specific Components */
.signin-container {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 420px;
}

.signin-header {
    text-align: center;
    margin-bottom: 32px;
}

.signin-title {
    font-size: 32px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
}

.signin-subtitle {
    font-size: 16px;
    color: #666;
}

/* Social Sign In */
.social-signin {
    margin-bottom: 24px;
}

.social-btn {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.social-btn:hover {
    border-color: #FFD700;
    background: #fffbf0;
}

.social-btn:last-child {
    margin-bottom: 0;
}

.divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
    color: #666;
    font-size: 14px;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
    z-index: 1;
}

.divider span {
    background: white;
    padding: 0 16px;
    position: relative;
    z-index: 2;
}

/* Sign In Form Styles */
.signin-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.signin-input {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s ease;
    width: 100%;
}

.signin-input:focus {
    border-color: #FFD700;
    outline: none;
}

.signin-input.error {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.forgot-password {
    margin-top: 8px;
}

.forgot-password a {
    color: #666;
    font-size: 14px;
    text-decoration: none;
}

.forgot-password a:hover {
    color: #000;
    text-decoration: underline;
}

.signin-btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.signin-btn:hover {
    background: #FFA500;
}

.signin-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.loading {
    text-align: center;
    color: #666;
    font-size: 14px;
    margin-top: 16px;
    display: none;
}

.signup-link {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.signup-link a {
    color: #000;
    font-weight: 600;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Sign Up Specific Components */
.page-header {
    text-align: center;
    margin-bottom: 40px;
}

.page-title {
    font-size: 42px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.page-title p {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

/* Account Type Selection */
.account-type-container {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.account-type-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    text-align: center;
}

.account-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.account-type {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.account-type:hover {
    border-color: #FFD700;
}

.account-type.selected {
    border-color: #FFD700;
    background: #fffbf0;
}

.account-type-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.account-type-price {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.account-type-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.account-type-features {
    list-style: none;
    padding: 0;
}

.account-type-features li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.account-type-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
}

.account-type-description {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Form Container */
.form-container {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.form-section {
    margin-bottom: 32px;
}

.form-section-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

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

.signup-input {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s ease;
}

.signup-input:focus {
    outline: none;
    border-color: #FFD700;
}

.signup-input.error {
    border-color: #dc3545;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 16px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FFD700;
    margin-top: 2px;
}

.checkbox-group label {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

.checkbox-group a {
    color: #000;
    font-weight: 600;
}

.signup-btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    margin-top: 20px;
}

.signup-btn:hover {
    background: #FFA500;
}

.signup-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

/* Message Styling */
.message {
    padding: 12px 16px;
    margin: 10px 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
}

.message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* About Us & Contact Page Components */
.content-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    font-size: 32px;
}

.section-content {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.page-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.highlight-box {
    background: #fffdf0;
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
    text-align: center;
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.highlight-subtitle {
    color: #666;
    font-size: 14px;
}

.cta-section {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 24px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #000;
    color: white;
    padding: 16px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background: #333;
    transform: translateY(-2px);
}

.contact-email {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 0;
    color: #000;
    display: inline-block;
}

/* Welcome Page Components */
.welcome-header {
    text-align: center;
    margin-bottom: 60px;
}

.welcome-icon {
    font-size: 80px;
    margin-bottom: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.welcome-title {
    font-size: 48px;
    font-weight: 300;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.welcome-subtitle {
    font-size: 20px;
    color: #666;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

.user-greeting {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 40px;
    text-align: center;
    color: #000;
}

.user-greeting h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.user-greeting p {
    font-size: 16px;
    opacity: 0.8;
}

.features-section {
    margin-bottom: 60px;
}

.features-title {
    font-size: 32px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.feature-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border-color: #FFD700;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.quick-actions {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.quick-actions-title {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    margin-bottom: 24px;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.action-btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.action-btn:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

.action-btn.secondary {
    background: white;
    border: 2px solid #000;
    color: #000;
}

.action-btn.secondary:hover {
    background: #FFD700;
    border-color: #FFD700;
}

.action-btn.signout {
    background: #FFD700;
    color: #000;
    border: none;
}

.action-btn.signout:hover {
    background: #FFA500;
}

/* 404 Page Components */
.error-container {
    background: white;
    max-width: 500px;
    margin: 100px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.error-code {
    font-size: 72px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 16px;
}

.error-title {
    font-size: 24px;
    font-weight: 300;
    color: #000;
    margin-bottom: 16px;
}

.error-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.error-btn {
    background: #FFD700;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
}

.error-btn:hover {
    background: #FFA500;
}

.error-btn.secondary {
    background: white;
    border: 2px solid #000;
    color: #000;
}

.error-btn.secondary:hover {
    background: #FFD700;
    border-color: #FFD700;
}

/* Welcome Page Additional Components */
.progress-bar {
    background: #e0e0e0;
    border-radius: 8px;
    height: 8px;
    margin: 16px 0;
    overflow: hidden;
}

.progress-fill {
    background: #FFD700;
    height: 100%;
    width: 0%;
    border-radius: 8px;
    transition: width 2s ease;
}

.account-info {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}

.account-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.account-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.account-detail-icon {
    font-size: 24px;
}

.account-detail-content {
    flex: 1;
}

.account-detail-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 4px;
}

.account-detail-value {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.tips-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 40px;
}

.tips-title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 24px;
    text-align: center;
}

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

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.tip-icon {
    font-size: 24px;
    margin-top: 2px;
}

.tip-content {
    flex: 1;
}

.tip-title {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.tip-text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.welcome-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 40px;
}

.footer-text {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 24px;
}

.footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    padding: 12px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.footer-btn:hover {
    background: #FFA500;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

/* Account Management Components */
.account-overview {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    color: #000;
}

.overview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.user-info h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 4px;
}

.user-info p {
    font-size: 16px;
    opacity: 0.8;
}

.account-badge {
    background: rgba(0, 0, 0, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 8px;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    opacity: 0.8;
    text-transform: uppercase;
}

.account-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.profile-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.form-input {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s ease;
}

.form-input:focus {
    border-color: #FFD700;
    outline: none;
}

.form-input:disabled {
    background: #f8f9fa;
    color: #666;
    cursor: not-allowed;
}

.form-input.error {
    border-color: #e74c3c;
}

.input-help {
    font-size: 12px;
    color: #666;
}

.input-error {
    font-size: 12px;
    color: #e74c3c;
    display: none;
}

.upgrade-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
}

.upgrade-title {
    font-size: 28px;
    font-weight: 300;
    color: #000;
    margin-bottom: 16px;
}

.upgrade-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

.upgrade-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.upgrade-option {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    position: relative;
    transition: all 0.2s ease;
}

.upgrade-option:hover {
    border-color: #FFD700;
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.upgrade-option.current {
    border-color: #28a745;
    background: #f8fff9;
}

.upgrade-option.recommended {
    border-color: #FFD700;
    background: #fffdf0;
}

.upgrade-badge {
    position: absolute;
    top: -8px;
    right: 16px;
    background: #FFD700;
    color: #000;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.upgrade-badge.current {
    background: #28a745;
    color: white;
}

.upgrade-plan {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.upgrade-price {
    font-size: 24px;
    font-weight: 300;
    color: #666;
    margin-bottom: 16px;
}

.upgrade-features {
    list-style: none;
    text-align: left;
}

.upgrade-features li {
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
}

.upgrade-features li:last-child {
    border-bottom: none;
}

/* My Events Components */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.controls-section {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.controls-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.controls-title {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.create-event-btn {
    background: #FFD700;
    color: #000;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.create-event-btn:hover {
    background: #000;
    color: #FFD700;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.filter-select {
    padding: 8px 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    transition: border-color 0.2s ease;
}

.filter-select:focus {
    border-color: #FFD700;
    outline: none;
}

.events-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.event-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.event-image {
    height: 120px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: #666;
    position: relative;
}

.event-content {
    padding: 20px;
}

.event-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-right: 12px;
    flex: 1;
    min-width: 0;
}

.event-category {
    background: #f8f9fa;
    color: #666;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: fit-content;
    max-width: none;
    overflow: visible;
}

.event-details {
    margin-bottom: 16px;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 14px;
    color: #666;
}

.event-detail:last-child {
    margin-bottom: 0;
}

.event-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.status-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

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

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

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

.event-stats {
    font-size: 12px;
    color: #666;
}

.event-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.action-btn {
    background: #f8f9fa;
    color: #333;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

.action-btn.primary {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
}

.action-btn.primary:hover {
    background: #FFA500;
}

.action-btn.danger {
    background: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.action-btn.danger:hover {
    background: #f1b0b7;
}

/* No Events Message */
.no-events-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    border: 2px dashed #e0e0e0;
}

.no-events-icon {
    font-size: 64px;
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-events-message h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 12px;
    font-weight: 600;
}

.no-events-message p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Reset Password Components */
.reset-container {
    background: white;
    border-radius: 12px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 480px;
}

.reset-header {
    text-align: center;
    margin-bottom: 32px;
}

.reset-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.reset-title {
    font-size: 32px;
    font-weight: 300;
    color: #000;
    margin-bottom: 8px;
}

.reset-subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.reset-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.reset-input {
    padding: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: border-color 0.2s ease;
}

.reset-input:focus {
    border-color: #FFD700;
    outline: none;
}

.reset-input.error {
    border-color: #e74c3c;
}

.reset-btn {
    background: #FFD700;
    color: #000;
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.reset-btn:hover {
    background: #FFA500;
}

.reset-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.password-requirements {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 12px;
    margin-top: 8px;
}

.password-requirements h4 {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}

.requirement {
    font-size: 11px;
    color: #6c757d;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.requirement.valid {
    color: #28a745;
}

.requirement.invalid {
    color: #dc3545;
}

.requirement::before {
    content: "○";
    font-weight: bold;
}

.requirement.valid::before {
    content: "✓";
}

.requirement.invalid::before {
    content: "✗";
}

.navigation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
}

.back-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.back-link:hover {
    color: #000;
}

.btn {
    background: #FFD700;
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    background: #F4C430;
}

.btn.secondary {
    background: #6c757d;
    color: white;
}

.btn.secondary:hover {
    background: #5a6268;
}

.btn.danger {
    background: #e74c3c;
    color: white;
}

.btn.danger:hover {
    background: #c0392b;
}

.btn.outline {
    background: transparent;
    border: 2px solid #FFD700;
    color: #000;
}

.btn.outline:hover {
    background: #FFD700;
}

.button-group {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.status-message {
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-weight: 500;
    display: none;
}

.status-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.status-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.status-message.show {
    display: block;
}

/* Event Creation Form Components */
.event-title-input {
    font-size: 24px !important;
    padding: 20px 24px !important;
    font-weight: 600;
    border: 3px solid #e0e0e0 !important;
    border-radius: 12px !important;
    line-height: 1.2;
    background: #fafafa;
    width: 100%;
    transition: all 0.3s ease;
}

.event-title-input:focus {
    border-color: #FFD700 !important;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    transform: scale(1.02);
}

.event-title-input::placeholder {
    color: #999;
    font-weight: 400;
    font-size: 20px;
}

/* Category select styling to match title input */
.form-select {
    font-size: 18px !important;
    padding: 18px 20px !important;
    font-weight: 500;
    border: 3px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #fafafa;
    width: 100%;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px !important;
}

.form-select:focus {
    border-color: #FFD700 !important;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
}

/* Event description textarea styling */
.event-description-textarea {
    font-size: 16px !important;
    padding: 20px 24px !important;
    font-weight: 400;
    border: 3px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #fafafa;
    width: 100%;
    transition: all 0.3s ease;
    line-height: 1.5;
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
}

.event-description-textarea:focus {
    border-color: #FFD700 !important;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
}

.event-description-textarea::placeholder {
    color: #999;
    font-weight: 400;
    line-height: 1.4;
}

/* Location form inputs to match select styling */
.form-input {
    font-size: 16px !important;
    padding: 16px 20px !important;
    font-weight: 400;
    border: 3px solid #e0e0e0 !important;
    border-radius: 12px !important;
    background: #fafafa;
    width: 100%;
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #FFD700 !important;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    outline: none;
}

/* Promotion Type Selection (styled like account types) */
.promotion-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.promotion-type {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    background: white;
}

.promotion-type:hover {
    border-color: #FFD700;
}

.promotion-type.selected {
    border-color: #FFD700;
    background: #fffbf0;
}

.promotion-type-name {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.promotion-type-price {
    font-size: 24px;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 8px;
}

.promotion-type-duration {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.promotion-type-features {
    list-style: none;
    padding: 0;
    margin-bottom: 12px;
}

.promotion-type-features li {
    font-size: 14px;
    color: #333;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.promotion-type-features li::before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
}

.promotion-type-description {
    font-size: 12px;
    color: #666;
    font-style: italic;
}

/* Promoted Listing Descriptor */
.featured-descriptor {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: linear-gradient(135deg, #fffbf0, #fff8e1);
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
}

.featured-icon {
    font-size: 24px;
    margin-top: 2px;
}

.featured-text {
    flex: 1;
}

.featured-text strong {
    font-size: 16px;
    color: #000;
    display: block;
    margin-bottom: 4px;
}

.featured-text p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Premium badges on field labels */
.premium-badge {
    background: #FFD700;
    color: #000;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 8px;
    text-transform: uppercase;
    margin-left: 8px;
}

/* Create Event Submit Button */
.create-event-submit {
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
    color: #000 !important;
    border: 3px solid #000 !important;
    border-radius: 16px !important;
    padding: 20px 48px !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none !important;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    transform: translateY(0);
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

.create-event-submit:hover {
    background: linear-gradient(135deg, #FFA500, #FF8C00) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.4);
    border-color: #333 !important;
}

.create-event-submit:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.5);
}

.create-event-submit:disabled {
    background: linear-gradient(135deg, #ccc, #999) !important;
    color: #666 !important;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
    border-color: #999 !important;
}

/* Submit container within form body */
.submit-container {
    text-align: center;
    padding: 24px 0;
}

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

/* Center single items in grid */
.centered-item {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
}

.centered-item .input-group {
    width: 100%;
    max-width: 300px;
}

/* Character counter styling for title */
.input-group .character-count {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    margin-top: 8px;
    text-align: right;
}

/* Mobile Responsive - Components */
@media (max-width: 768px) {
    .search-container {
        padding: 24px;
    }
    
    .signin-container {
        padding: 30px 20px;
    }

    .signin-title {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 32px;
    }

    .form-container, .account-type-container {
        padding: 24px 20px;
    }

    .account-types {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .content-section {
        padding: 24px;
    }

    .section-title {
        font-size: 24px;
    }
    
    .welcome-title {
        font-size: 36px;
    }

    .welcome-subtitle {
        font-size: 18px;
    }

    .welcome-icon {
        font-size: 60px;
    }

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

    .quick-actions {
        padding: 24px 20px;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .action-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .error-container {
        margin: 50px 20px;
        padding: 24px;
    }
    
    .error-code {
        font-size: 48px;
    }
    
    .tips-section,
    .account-info {
        padding: 24px 20px;
    }

    .footer-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .account-details {
        grid-template-columns: 1fr;
    }
}