/* Bandsurf Color Palette */
.column-header-label {
    height: 45px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 8px;
    line-height: 1.2;
}

.column-header-label .column-icon {
    margin-right: 0;
    margin-bottom: 2px;
}
/* LOCAL FONTS - Fix for iOS App */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/Outfit-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('fonts/Outfit-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('fonts/Outfit-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('fonts/Outfit-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 300;
  font-display: block;
  src: url('fonts/SourceSans3-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/SourceSans3-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url('fonts/SourceSans3-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url('fonts/SourceSans3-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url('fonts/SourceSans3-Bold.ttf') format('truetype');
}

:root {
    /* New Color Scheme */
    --bg-primary: #FAFAFA;        /* White/Backgrounds */
    --bg-secondary: #EBEBEB;      /* Grey sections */
    --color-primary: #0F45D2;     /* Primary blue */
    --color-error: #BD1212;       /* Error red */
    --color-accent: #F59E0B;      /* Accent yellow */
    --color-dark: #0A0E27;        /* Dark elements */
    --color-text: black;          /* Text color */
    --color-text-muted: #666;     /* Muted text */
    --color-white: white;         /* Pure white when needed */
}

/* Prevent visited state color changes on specific elements */
.artist-link:visited,
.artist-name:visited,
.artist-card-link:visited,
button:visited,
.btn:visited,
.primary-btn:visited,
.tickets-btn:visited {
}

/* Global Button Text Centering */
button {
    text-align: center !important;
}

/* Global Styles - Clean, Mobile First Approach */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 300;
}

/* Show Page Styles */
.show-page .profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: .5rem;
    align-items: flex-start;
}

.show-page .profile-content {
    margin-top: 0;
}

.venue-info-box {
    background: var(--bg-secondary);
    padding: 1rem;
    border-radius: 8px;
}

.venue-name {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.venue-address {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}


.show-image-container {
    flex-shrink: 0;
    position: relative;
}

.show-image {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.show-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-image-img.fallback {
    opacity: 0.7;
}

.show-page .actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: nowrap;
}

.show-page .going-buttons {
    margin-bottom: 0;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    flex: 0 0 auto;
    white-space: nowrap;
}

.show-page .going-checkbox,
.show-page .cant-go-checkbox {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 16px;
    cursor: pointer;
}

.show-page .going-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #28a745;
}

.show-page .cant-go-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--color-error);
}

.show-page .going-label,
.show-page .cant-go-label {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
}

/* Venue profile link styling */
.venue-profile-link {
    color: #4361ee;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.venue-profile-link:hover {
    color: #3651d1;
    text-decoration: underline;
}

.venue-website {
    margin-top: 10px;
}

.venue-website a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.venue-website a:hover {
    color: #4361ee;
    text-decoration: underline;
}

.show-info {
    flex: 1;
    min-width: 0;
}

.show-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.artist-link-header {
    color: var(--color-text);
    text-decoration: underline;
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.1rem;
    display: inline-block;
}

.artist-link-header:hover {
    text-decoration: underline;
}

.show-date {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.05rem;
    font-weight: 300;
}

.show-day-time {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.1rem;
    font-weight: 300;
}

.venue-info {
    margin-bottom: 1rem;
}

.venue-info #venue-name {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-dark);
}

.venue-info #venue-location {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.all-ages-indicator,
.not-all-ages-indicator {
    margin-top: 0.1rem;
}

.all-ages-badge {
    background: var(--color-accent);
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.not-all-ages-badge {
    background: #dc3545;
    color: white;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.show-details-grid {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--bg-primary);
    border-radius: 8px;
    border: 1px solid var(--bg-secondary);
}

.detail-label {
    font-weight: 500;
    color: var(--color-dark);
}

.ticket-section {
    text-align: center;
    margin: .5rem 0;
    flex: 0 0 auto;
}

.ticket-button {
    background: var(--color-primary);
    color: white;
    padding: 12px 32px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.other-artists-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.other-artist-link {
    color: var(--color-primary);
    text-decoration: none;
    padding: 8px 16px;
    background: var(--bg-primary);
    border-radius: 20px;
    border: 1px solid var(--bg-secondary);
    font-weight: 500;
    transition: all 0.2s ease;
}

.other-artist-link:hover {
    background: var(--color-primary);
    color: white;
}

.other-artist-name {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border-radius: 20px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.show-notes-content {
    line-height: 1.6;
    color: var(--color-text);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .show-page .profile-header {
        gap: 1.5rem;
    }
    
    .show-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }
    
    .going-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .show-info h1 {
        font-size: 2rem;
    }
    
    .detail-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Spotify Discovery Page Styles */
.discover-header {
    text-align: center;
    margin: 2rem 0;
}

.discover-header h1 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.discover-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.spotify-connection {
    margin: 2rem 0;
}

.connection-card {
    background: var(--color-white);
    border: 2px solid var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.connection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.connection-card h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.connection-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.connection-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.spotify-connect-btn {
    background: #1DB954;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 0.3s ease;
    margin: 0 auto;
}

.spotify-icon {
    width: 20px;
    height: 20px;
}

.time-range-selector {
    margin: 2rem 0;
    text-align: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.time-range-selector h3 {
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.time-range-buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 1.5rem;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.time-range-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 8px 4px;
    background: #ffffff;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.time-range-btn:hover {
    background: #f8f9fa;
    border-color: #007bff;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.time-range-btn.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

/* Mobile responsive - 2x2 grid */
@media (max-width: 768px) {
    .time-range-selector {
        padding: 0 0.5rem;
    }
    
    .time-range-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .time-range-btn {
        font-size: 0.9rem;
        padding: 12px 16px;
        min-height: 48px; /* Larger touch target on mobile */
    }
    
    /* Larger touch targets for artist cards on mobile */
    .artist-card {
        padding: 16px;
    }
    
}

@media (max-width: 480px) {
    .time-range-selector {
        padding: 0 0.25rem;
    }
    
    .time-range-buttons {
        gap: 6px;
    }
    
    .time-range-btn {
        padding: 8px 4px;
        font-size: 13px;
        min-height: 40px;
    }
}

.loading-state, .error-state, .empty-state {
    text-align: center;
    padding: 3rem 1rem;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--bg-secondary);
    border-top: 4px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

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

.error-icon, .empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.artists-container {
    margin: 2rem 0;
}

.artists-header {
    text-align: center;
    margin-bottom: 2rem;
}

.artists-header h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.artists-header p {
    color: var(--color-text-muted);
}

.artists-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 2rem;
}

/* Original artist card styles for search page */
.artist-card {
    background-color: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    transform: translateY(0);
}

.artist-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-info {
    padding: 16px;
}

.artist-name {
    margin: 0 0 6px 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.artist-genre {
    margin: 0 0 12px 0;
    color: #666;
    font-size: 14px;
}

.artist-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
}

.spotify-popularity {
    color: #1db954;
    font-weight: 500;
}

.match-type {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.match-type.exact {
    background: #e8f5e8;
    color: #2d5a2d;
}

.match-type.fuzzy {
    background: #fff3cd;
    color: #856404;
}

.match-type.created {
    background: #e7f3ff;
    color: #0066cc;
}

.match-type.bandsurf {
    background: #f8f9fa;
    color: #495057;
}

.match-type.spotify-followed {
    background: #e8f5e8;
    color: #1db954;
}

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

.follow-btn {
    background: #1db954;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.follow-btn:hover {
    background: #1ed760;
}

.follow-btn.following {
    background: #666;
}

.follow-btn.following:hover {
    background: #dc3545;
}

.follow-btn.following:hover .following-text::after {
    content: " ✕";
}

/* NEW: Discover page specific artist card styles */
.discover-artist-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: stretch;
    padding: 8px;
    height: 80px;
    width: 100%;
    box-sizing: border-box;
}


.discover-artist-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 12px;
    align-self: center;
}

.discover-artist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discover-artist-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    padding: 8px 0;
    height: 100%;
}

.discover-artist-name-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
}

.discover-artist-name {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.discover-artist-actions {
    display: flex;
    gap: 6px;
    align-items: center;
    margin-top: auto;
}

.discover-artist-link {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    text-decoration: none;
    border: 1px solid #dee2e6;
    cursor: pointer;
    font-weight: 400;
    transition: all 0.2s ease;
    background: #f8f9fa;
    color: #495057;
    display: inline-block;
    white-space: nowrap;
    line-height: 1;
}

.discover-artist-link:hover {
    background: #e9ecef;
    color: #495057;
    text-decoration: none;
}

.discover-follow-btn {
    padding: 4px 8px;
    font-size: 12px;
    border-radius: 4px;
    background: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
}

.discover-follow-btn:hover {
    background: #0056b3;
}

.discover-follow-btn.following {
    background: #28a745 !important;
}

.discover-follow-btn.following:hover {
    background: #dc3545;
}

.discover-follow-btn.unfollowed {
    background: #dc3545 !important;
}


.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.load-more-container {
    text-align: center;
    margin: 2rem 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-content {
    background: var(--color-white);
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--bg-secondary);
}

.modal-header h3 {
    color: var(--color-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-muted);
}

.modal-body {
    padding: 1.5rem;
}

/* Discover Tab Styles */
.discover-tab-content {
    padding: 2rem 0;
}

.discover-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.discover-intro h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.discover-intro p {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.connection-status {
    background: var(--color-white);
    border: 2px solid var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connection-status.connected {
    border-color: #22c55e;
    background: #f0fdf4;
}

.connection-status.disconnected {
    border-color: var(--color-primary);
    background: #eff6ff;
}

.connection-status.error {
    border-color: var(--color-error);
    background: #fef2f2;
}

.status-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.status-text h4 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.status-text p {
    color: var(--color-text-muted);
    margin: 0;
}

.discover-actions {
    text-align: center;
    margin-top: 2rem;
}

/* Spotify Connection Row Styles */
.spotify-connection-single-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.spotify-connection-single-row label {
    margin: 0;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.spotify-status-inline {
    display: flex;
    align-items: center;
}

.spotify-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    border: 1px solid #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.spotify-active-text {
    color: #28a745;
    font-weight: 500;
}

.spotify-connect-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #1db954;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.spotify-connect-btn .spotify-icon {
    width: 16px;
    height: 16px;
}

/* Spotify Section Styles */
.spotify-section {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.spotify-section h3 {
    color: var(--color-dark);
    margin-bottom: 0.5rem;
}

.spotify-section p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.spotify-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-disconnect {
    background: var(--color-error);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-disconnect:hover {
    background: #dc2626;
}

/* Responsive Design */
@media (max-width: 768px) {
    .artists-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .time-range-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .connection-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .connection-status {
        flex-direction: column;
        text-align: center;
    }
    
    .discover-tab-content {
        padding: 1rem 0;
    }
}

/* Header Font - Outfit Normal */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Source Sans 3', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-weight: 400;
}

html {
    font-size: 16px;
}

body {
    line-height: 1.5;
    color: var(--color-text);
    background-color: var(--bg-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    width: 100%;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-weight: 300;
}

/* Header - Clean and Minimal */
header {
    background-color: var(--bg-primary);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

.logo-image {
    height: 24px;
    width: auto;
    display: block;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons button {
    border: none;
    background: none;
    cursor: pointer;
    font-weight: 400;
}

.login-btn {
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 400;
}

.auth-buttons .signup-btn {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 400;
}

/* Signup prompt styles for personalized events */
.signup-prompt {
    text-align: center;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.signup-message {
    margin: 0 0 15px 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.signup-btn-inline {
    display: inline-block;
    background-color: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.signup-btn-inline:hover {
    background-color: #3651d4;
    text-decoration: none;
}

.auth-buttons .event-tickets, .edit-show-btn {
    background-color: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
}

.edit-show-btn {
    border: none;
    cursor: pointer;
    background-color: var(--color-primary);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
}





/* User menu styles for logged-in users */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-greeting {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 400;
}

.profile-btn {
    background-color: transparent;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 400;
}

.logout-btn {
    background-color: var(--bg-secondary);
    border: 1.5px solid var(--color-error);
    color: var(--color-error);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 400;
}




/* My Shows Filter Styles */
.my-shows-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 4px;
    flex-wrap: nowrap;
    justify-content: flex-start;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    justify-content: center;
}

.filter-btn:hover {
    background: #e8e8e8;
}

.filter-btn.active {
    border-color: #007bff;
    background: #f0f8ff;
}

.filter-circles {
    display: flex;
    gap: 4px;
    align-items: center;
}

.filter-circles.stacked {
    flex-direction: column;
    gap: 2px;
}

.filter-circles.triangle {
    flex-direction: column;
    gap: 1px;
    align-items: center;
}

.filter-circles.triangle .circle-row {
    display: flex;
    gap: 3px;
}

.circle {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.circle.green {
    background-color: #28a745;
}

.circle.grey {
    background-color: #6c757d;
}

.circle.red {
    background-color: #dc3545;
}

/* Profile Navigation Styles */
.nav-container {
    background: var(--color-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover {
    background: var(--color-primary);
    color: white;
}

/* Profile Header Styles */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
    margin-top: 1rem;
}

.profile-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.profile-header h1 {
    color: var(--color-dark);
    margin: 0;
    text-align: left;
}

/* Profile page styles */
.profile-page {
    min-height: 100vh;
    background: var(--color-background);
}

/* Other Artists Form Styling */
.other-artists-container {
    position: relative;
}

.artist-search-container {
    position: relative;
}

.artist-search-container input[type="text"] {
    width: 100%;
    min-width: 300px;
}

.artist-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.artist-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-border-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.artist-suggestion:hover {
    background: var(--color-background-light);
}

.artist-suggestion:last-child {
    border-bottom: none;
}

.artist-suggestion .verified-badge {
    background: var(--color-primary);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 600;
}

.added-artists {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.artist-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 2px solid #d1d5db;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.artist-tag.has-profile {
    background: var(--color-primary-light);
}

.artist-tag .remove-artist {
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.artist-tag .remove-artist:hover {
    background: rgba(0,0,0,0.1);
    color: var(--color-error);
}

.field-help {
    color: var(--color-text-muted);
    font-size: 12px;
    display: block;
}

/* Feedback Banner */
.feedback-banner {
    background-color: #e7f3ff;
    border: 1px solid #b3d9ff;
    border-radius: 8px;
    padding: 12px 20px;
    margin-bottom: 20px;
    text-align: center;
}

.feedback-banner p {
    margin: 0;
    color: #2c5aa0;
    font-size: 14px;
}

.feedback-banner a {
    color: #1a4480;
    text-decoration: none;
    font-weight: 500;
}


/* Followers page specific header styling */
.followers-page .profile-header {
    text-align: left;
}

.send-update-btn {
    background-color: var(--color-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
}


.profile-header h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 10px;
}

.profile-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.profile-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: auto 0;
}

.profile-info, .profile-actions, .contact-support {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.profile-info h2, .profile-actions h2, .contact-support h2 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 10px;
}

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

.support-info p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
    font-size: 16px;
}

.support-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}


.info-grid {
    display: grid;
    gap: 15px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

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

.info-item label {
    font-weight: 500;
    color: #555;
}

.info-item span {
    color: var(--color-text);
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.action-btn {
    padding: 20px 20px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    margin-bottom: 10px;
}

.edit-profile-btn {
    background-color: var(--color-primary);
    color: white;
}

.preferences-btn, .manage-shows-btn {
    background-color: var(--bg-secondary);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.logout-btn {
    background-color: var(--color-error);
    color: white;
}

.logout-btn.confirm-logout {
    background-color: var(--color-error);
    animation: pulse-confirm 1s infinite;
}





/* Desktop-only: Switch column positions for artist pages */
@media (min-width: 769px) {
    .artist-page .profile-content {
        grid-template-areas: 
            "about upcoming-events"
            "upcoming-for-you upcoming-events";
        grid-template-rows: auto auto;
        row-gap: 20px;
    }
    
    .artist-page #about-section {
        grid-area: about;
    }
    
    .artist-page #upcoming-for-you-section {
        grid-area: upcoming-for-you;
        align-self: start;
    }
    
    .artist-page #events-section {
        grid-area: upcoming-events;
    }
    
    /* When no about section, move upcoming-for-you to top */
    .artist-page:not(:has(#about-section:not([style*="display: none"]))) .profile-content {
        grid-template-areas: 
            "upcoming-for-you upcoming-events";
    }
}

/* Bio text truncation and read more functionality */
.bio-text {
    line-height: 1.5;
    margin: 0;
}

.bio-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bio-expanded {
    display: block;
}

.read-more-link {
    color: var(--color-primary);
    cursor: pointer;
    font-weight: 500;
    text-decoration: none;
    margin-top: 0.5rem;
    display: inline-block;
    font-size: 0.9rem;
}

.read-more-link:hover {
    text-decoration: underline;
}

/* Responsive design for profile pages */
@media (max-width: 768px) {
    .profile-content {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .profile-info, .profile-actions {
        padding: 20px;
    }
    
    .profile-header h1 {
        font-size: 2rem;
    }
}

/* Main Content Area */
main {
    flex: 1;
}

.profile-container {
    width: 95%;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    padding-top: 1rem;
}

/* Search Section */
#home-search {
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding-top: 33%;
}

.search-container {
    width: 100%;
}

.search-container h2 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.5px;
}

.search-container p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    text-align: center;
}

.search-bar {
    display: flex;
    position: relative; /* Needed to position the button */
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
    border-radius: 50px;
    background-color: var(--bg-primary);
}


.search-bar input {
    flex: 1;
    padding: 16px 120px 16px 24px; /* Add padding to the right for the button */
    font-size: 1rem;
    border: none;
    outline: none;
    width: 100%;
    color: var(--color-text);
    background: transparent;
    border-radius: 50px;
}

.search-bar input::placeholder {
    color: #9ca3af;
}

.search-btn {
    position: absolute;
    right: 6px;
    top: 6px;
    bottom: 6px;
    padding: 0 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 50px;
    background-color: var(--color-primary);
    color: #fff;
    cursor: pointer;
}




.submit-button {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 5px rgba(67, 97, 238, 0.25);
    cursor: pointer;
    width: 100%;
    max-width: 300px; /* Prevent button from being too wide on larger screens */
    margin-top: 1rem;
}

.submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    box-shadow: none;
}


/* --- Results Section --- */
.results-section {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 2rem auto;
    width: 90%;
}

.results-message {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.results-message.error {
    color: var(--color-error);
}

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

/* Removed duplicate .artist-card definition */


.artist-search-info {
    padding: .5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

/* Removed duplicate .artist-name definition */

.source-indicator {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-top: 0.25rem;
    letter-spacing: 0.5px;
}

.source-indicator.bandsurf-artist {
    background-color: var(--color-primary);
    color: white;
    border: 1px solid var(--color-primary);
}

.artist-card-link {
    text-decoration: none;
}

.artist-card-link .artist-name {
    color: var(--color-primary); /* Use primary theme color */
    font-weight: bold;
    font-size: 1.2rem;
}


.upcoming-events {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 .25rem 0;
}

.venue-location {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    margin: 2px 0 4px 0;
    font-style: italic;
}

.ticketmaster-link {
    display: inline-block;
    text-align: center;
    padding: 0.75rem 1rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}


/* Media Queries for Responsive Design */
@media (max-width: 480px) {

    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .auth-buttons {
        gap: 6px;
    }
    
    .login-btn, .signup-btn {
        padding: 7px 12px;
        font-size: 0.85rem;
    }
}

@media (min-width: 768px) {
    .search-container h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .search-container p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    /* Raise content higher on desktop */
    #home-search {
        padding-top: 15%;
        max-width: 900px;
    }
    
    /* Profile page desktop optimization */
    .profile-page {
        padding: 20px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .profile-header h1 {
        font-size: 2rem;
    }
    
    /* Center container content */
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
    
    /* Keep profile header full width, only center the tabs */
    .profile-page .profile-content {
        display: block;
    }
    
    /* REMOVED - conflicting with final rule */
}

/* Accessibility */


/* Signup Page Styles */
.signup-section {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    padding-top: 1rem;
}

.container {
    width: 100%;
    padding: 0 1rem;
}

.signup-section h2 {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-text);
    letter-spacing: -0.5px;
}

.signup-section p {
    font-size: 1.1rem;
    margin-bottom: 1.75rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.account-type-selection {
    margin-bottom: 2rem;
}

.account-type-selection h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--color-text);
    font-weight: 400;
}

.account-type-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.account-type-btn {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 400;
    border: 2px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--color-text-muted);
    cursor: pointer;
    min-width: 120px;
}


.account-type-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #fff;
}

/* Venue Waitlist Message */
.venue-waitlist-message {
    background-color: #e3f2fd;
    border: 1px solid #90caf9;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.venue-waitlist-message p {
    margin: 0;
    color: #1565c0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.venue-waitlist-message p:first-child {
    margin-bottom: 0.5rem;
}

.venue-waitlist-message strong {
    font-weight: 500;
}

.signup-form {
    max-width: 450px;
    margin: 0 auto;
    text-align: left;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 400;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--color-text);
}

.form-group input:disabled,
.form-group input.disabled-input {
    background-color: #f0f0f0;
    color: #888;
    cursor: not-allowed;
    border-color: #ccc;
}

.form-group .field-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
    font-style: italic;
}

.signup-form .password-requirements {
    font-size: 14px;
    color: var(--color-error); /* Red until valid */
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

.signup-form .requirement {
    display: flex;
    align-items: center;
}

.signup-form .requirement.valid {
    color: #4caf50; /* Green when valid */
}

.signup-form .req-icon {
    display: inline-block;
    margin-right: 8px;
    font-weight: 500;
}

.signup-form .requirement.valid .req-icon {
    content: '✓';
}

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

.password-input-container input {
    flex: 1;
    padding-right: 70px; /* Space for show button */
}

.show-password {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: none;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    color: var(--color-primary);
    font-weight: 500;
    cursor: pointer;
}


/* Checkbox Styles */
.terms-group {
    margin: 1rem 0;
    width: 100%;
    padding: 0;
}

.checkbox-container {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    width: 100%;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.checkbox-container label {
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    display: inline-block;
}

.checkbox-container a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}


/* Notification Preferences Styles */
.notification-preferences-form {
    margin-top: 1.5rem;
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.form-subtitle {
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Column header styles */
.notification-column-headers {
    display: flex;
    margin-bottom: 1rem;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    background-color: #f0f0f0;
    font-weight: 500;
    color: var(--color-text);
    align-items: center;
}

.notification-type-column {
    flex: 1;
}

.notification-toggle-columns {
    display: flex;
    gap: 2rem;
    width: 120px;
    justify-content: space-between;
}

.notification-toggle-column {
    text-align: center;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0; /* Managed by label margin */
}

.master-toggle-wrapper {
    position: relative;
    width: 40px;
    height: 22px;
    display: flex;
    align-items: center;
    margin-top: 6px;
}

.master-toggle-wrapper .toggle-label {
    position: absolute;
    width: 40px;
    height: 22px;
    background-color: #e0e0e0;
    border-radius: 34px;
}

.master-toggle-wrapper .toggle-input:checked + .toggle-label {
    background-color: var(--color-primary);
}

.master-toggle-wrapper .toggle-input:checked + .toggle-label .toggle-slider {
    transform: translateX(18px);
}

.master-toggle-wrapper .toggle-slider {
    position: absolute;
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
}


.column-icon {
    font-size: 0.9rem;
    margin-right: 0.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* Notification categories */
.notification-category {
    margin-bottom: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.notification-category h2 {
    font-size: 1.1rem;
    color: var(--color-text);
    margin-top: 0;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

/* Toggle column icons */
.toggle-column-icons {
    display: flex;
    justify-content: flex-end;
    gap: 2.7rem;
}

.toggle-column-icon {
    font-size: 1rem;
    opacity: 0.7;
}

.notification-category .category-description {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0 0 0 0;
    line-height: 1.4;
    font-style: italic;
}

/* How to use Bandsurf section */
.how-to-use {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.how-to-use h3 {
    text-align: center;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.step-number {
    background-color: var(--color-primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step-content {
    text-align: center;
    flex: 1;
    min-width: 0;
}

.step-content h4 {
    margin: 0 0 0.1rem 0;
    color: var(--color-dark);
    font-size: 1.1rem;
}

.step-content p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 0.8rem;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .how-to-use {
        margin-top: 1.5rem;
        padding: 0.75rem;
    }
    
    .step {
        gap: 0.5rem;
    }
    
    .step-number {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
    
    .step-content {
        flex: 1;
        min-width: 0;
    }
    
    .step-content h4 {
        font-size: 0.9rem;
    }
}

/* Notification items */
.notification-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.notification-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.notification-item:first-child {
    padding-top: 0;
}

.notification-content {
    flex: 1;
    padding-right: 1rem;
    text-align: left;
}

.notification-content h4 {
    margin: 0 0 0.15rem;
    font-size: 0.95rem;
    font-weight: normal;
    color: var(--color-text);
}

.notification-content p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.notification-toggles {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Toggle switch styles */
.toggle-wrapper {
    position: relative;
    width: 36px;
    height: 20px;
    display: flex;
    align-items: center;
}

.toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-label {
    position: absolute;
    top: 0;
    right: 0;
    width: 36px;
    height: 20px;
    background-color: #ccc;
    border-radius: 34px;
    cursor: pointer;
}

.toggle-slider {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    border-radius: 50%;
}

.toggle-input:checked + .toggle-label {
    background-color: var(--color-primary);
}

.toggle-input:checked + .toggle-label .toggle-slider {
    transform: translateX(16px);
}

/* Disabled toggle styling */
.toggle-wrapper.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.toggle-wrapper.disabled .toggle-label {
    background-color: #cccccc !important;
    cursor: not-allowed;
}

.toggle-wrapper.disabled .toggle-input {
    pointer-events: none;
}

.notification-disclaimer {
    padding: 0.75rem;
    border-radius: 6px;
    background-color: #ddeaff;
    border-left: 3px solid #0a34f2;
}

.notification-disclaimer-not {
    padding: 0.75rem;
    border-radius: 6px;
    background-color: #ffe6e6;
    border-left: 3px solid var(--color-error);
}

.notification-disclaimer p,
.notification-disclaimer-not p {
    margin: 0.3rem 0;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.4;
}

.suggested-notifications-section .suggested-notifications-description {
    margin: 0.3rem 0 !important;
    font-size: 0.85rem !important;
    color: #555 !important;
    line-height: 1.4 !important;
    text-align: center;
}

.suggested-notifications-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid #e9ecef;
    text-align: center;
}

.suggested-notifications-button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(67, 97, 238, 0.2);
}






/* Artist Profile Styles */
.profile-container {
    padding: 1.5rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.artist-image-container {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.follow-button {
    margin-top: 12px;
    padding: 8px 20px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    min-width: 80px;
}

.follow-button.following {
background-color: white;
color: var(--color-primary);
border: 1px solid var(--color-primary);
    border: 1px solid var(--color-primary);
}


.follow-button.followed {
    background-color: #28a745;
    color: white;
    border: 1px solid #28a745;
}


.follow-button.unfollow-confirm {
    background-color: var(--color-error);
    border-color: var(--color-error);
    color: white;
}


.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f0f4ff;
    border: 1px solid #e0e4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover !important;
    background-position: 50% 25% !important;
    background-repeat: no-repeat !important;
}

/* Square image for venue pages */
body:has([id="venue-image"]) .artist-image,
.venue-page .artist-image,
.venue-edit-profile-page .image-preview {
    border-radius: 12px;
}

.artist-info {
    flex: 1;
    text-align: left;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Image Upload Styles */
.image-upload-container {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.image-upload-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.image-preview {
    width: 150px;
    height: 150px;
    border: 2px dashed #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

/* Square image preview for show images */
.image-preview.show-image {
    border-radius: 12px;
}


.image-preview.has-image {
    border: 2px solid #e5e7eb;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.image-placeholder {
    text-align: center;
    color: #6b7280;
}

.image-placeholder svg {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.image-placeholder p {
    margin: 0;
    font-size: 11px;
    font-weight: 500;
}

.image-input {
    display: none;
}

.image-upload-buttons {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 8px;
}

.upload-btn, .remove-btn {
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    flex: 1;
}

.upload-btn {
    background-color: var(--color-primary);
    color: white;
}

.remove-btn {
    background-color: #6b7280;
    color: white;
    cursor: not-allowed;
    opacity: 0.6;
}

.remove-btn.active {
    background-color: #ef4444;
    cursor: pointer;
    opacity: 1;
}

.image-upload-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10px;
}

.upload-hint {
    font-size: 1rem !important;
    color: #6b7280;
    margin: 0;
    line-height: 1.4;
}

.profile-header h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: left;
    line-height: 1.1;
}

.genre-tag {
    display: inline-block;
    background-color: #f0f4ff;
    color: var(--color-primary);
    padding: 0.15rem 0.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
}

.profile-section {
    margin-bottom: .5rem;
    padding-top: .5rem;
}

.profile-section h2 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
}

.artist-links-container {
    margin-top: 1.5rem;
}

.artist-links-container h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

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

.link-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.header-links {
    margin-top: 0.2rem;
    gap: 0.9rem;
    padding-left: 0;
}

.artist-info {
    display: flex;
    flex-direction: column;
    height: 120px;
    justify-content: center;
    padding: 0;
    gap: 0.4rem;
}

.follower-count {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.artist-action-buttons {
    display: flex;
    gap: 1rem;
    margin: 0 0 1.5rem;
    justify-content: center;
}

.artist-action-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    margin: 0 5px;
}

.about-header {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0rem;
}

.genre-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: baseline;
}

.header-genres {
    margin: 0;
    justify-content: flex-start;
}

.artist-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
    color: var(--color-text);
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.event-card {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-primary);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.event-date {
    min-width: 100px;
    font-weight: 500;
}

.event-info {
    flex-grow: 1;
}

.event-name {
    margin: 0 0 0.25rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.event-venue {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.event-tickets {
    padding: 0.4rem 0.8rem;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    display: inline-block;
}

.event-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.event-info-column {
    flex: 1;
}

.event-actions-column {
    flex: 0 0 auto;
}

.event-date {
    font-weight: 500;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.event-info {
    flex: 1;
}

.event-venue {
    font-weight: 500;
    margin: 0;
}

.event-location {
    color: var(--color-text-muted);
    margin: 5px 0 0 0;
}

.event-tickets {
    padding: 8px 16px;
    background-color: var(--color-dark);
    color: white;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

/* Pagination */
.pagination {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pagination-info {
    color: var(--color-text-muted);
    margin-bottom: 15px;
    text-align: center;
}

.pagination-controls {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    padding: 0 10px;
    background-color: var(--bg-primary);
    border: 1px solid #ddd;
    border-radius: 4px;
    color: var(--color-text);
    cursor: pointer;
}

.pagination-btn.active {
    background-color: var(--color-dark);
    color: white;
    border-color: var(--color-dark);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .pagination-btn {
        min-width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

.loading-message,
.error-message {
    padding: 1rem;
    text-align: center;
    color: var(--color-text-muted);
}

.error-title {
    color: var(--color-error);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .notification-preferences-form {
        padding: 0 0.5rem;
    }
    
    .notification-item {
        flex-direction: row; /* Keep horizontal layout on tablet */
    }
    
    .notification-content {
        padding-right: 0.5rem;
    }
    
    .notification-content p:not(.category-description):not(.important-description) {
        display: none; /* Hide item descriptions on smaller screens, but keep category and important descriptions */
    }
}

@media (max-width: 480px) {
    .notification-column-headers {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
    
    .notification-toggle-columns {
        width: 100px;
        gap: 1rem;
    }
    
    .notification-toggle-column {
        font-size: 0.75rem;
    }
    
    .notification-item {
        flex-direction: row;
        align-items: center;
        padding: 0.5rem 0;
    }
    
    .notification-content h4 {
        font-size: 0.85rem;
    }
    
    .notification-content {
        padding-right: 0.5rem;
    }
    
    .notification-toggles {
        width: 100px;
        justify-content: space-between;
        gap: 1rem;
    }
    
    .notification-category {
        padding: 0.75rem;
    }
}

/* Genre Selection Styles */
.genre-selection-form {
    margin-top: 1.5rem;
}

.genres-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .genres-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .genres-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Further optimize content positioning for large desktops */
    #home-search {
        padding-top: 10%;
        max-width: 1000px;
    }
    
    /* Make search bar 30% narrower on desktop */
    .search-bar {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .search-container h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .search-container p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Profile page large desktop optimization */
    .profile-page {
        padding: 30px 60px;
        max-width: 1400px;
    }
    
    .profile-header h1 {
        font-size: 2.25rem;
    }
    
    .account-settings-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    /* Large desktop container centering */
    .container {
        max-width: 1400px;
        padding: 0 3rem;
    }
    
    /* Keep profile header full width - large desktop */
    .profile-page .profile-content {
        display: block;
    }
    
    /* REMOVED - conflicting with final rule */
}

.genre-item {
    position: relative;
}

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

.genre-item label {
    display: block;
    padding: 0.75rem 1rem;
    background-color: var(--bg-primary);
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}

.genre-item input[type="checkbox"]:checked + label {
    background-color: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    font-weight: 500;
}

.genre-selection-counter {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

#selected-count {
    font-weight: 500;
    color: var(--color-primary);
}

/* Custom Select Styles */
.custom-select-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
}

/* Prevent text selection only on custom select elements, not input fields */
.custom-select-wrapper .custom-select {
    user-select: none;
}

/* Ensure input fields allow text selection */
.custom-select-wrapper input[type="text"],
.custom-select-wrapper input[type="email"],
.custom-select-wrapper input[type="url"],
.custom-select-wrapper input[type="number"],
.custom-select-wrapper input[type="date"],
.custom-select-wrapper input[type="time"],
.custom-select-wrapper textarea {
    user-select: text;
}

/* General rule to ensure all input fields allow text selection */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="password"],
textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    pointer-events: auto !important;
    -webkit-touch-callout: default !important;
}

/* Ensure form elements can be selected */
.form-group input,
.form-group textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    pointer-events: auto !important;
}

/* Override any conflicting styles */
* {
    -webkit-touch-callout: inherit;
}

/* Fix input background and text color */
input {
    color: var(--color-text) !important;
    background-color: white !important;
}

input:focus {
    color: var(--color-text) !important;
    background-color: white !important;
}

input:active {
    color: var(--color-text) !important;
    background-color: white !important;
}

input:hover {
    color: var(--color-text) !important;
    background-color: white !important;
}

/* Fix browser autofill text color */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-text-fill-color: var(--color-text) !important;
    color: var(--color-text) !important;
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/* Override any form validation colors */
input:valid {
    color: var(--color-text) !important;
    background-color: white !important;
}

input:invalid {
    color: var(--color-text) !important;
    background-color: white !important;
}

/* Override any browser default colors */
input[type="email"],
input[type="password"],
input[type="text"] {
    color: var(--color-text) !important;
    background-color: white !important;
    -webkit-text-fill-color: var(--color-text) !important;
}

/* Password input wrapper */
.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Show password button */
.show-password-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 14px;
    padding: 5px;
    text-align: center;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    position: relative;
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--color-text);
    padding-right: 2.5rem;
}

.custom-select-trigger:after {
    content: '';
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666;
}

.custom-select.opened .custom-select-trigger:after {
    border-top: none;
    border-bottom: 6px solid #666;
}

.custom-options {
    position: absolute;
    display: block;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.custom-select.opened .custom-options {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.custom-option {
    position: relative;
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    cursor: pointer;
}

.custom-option.selected {
    color: var(--color-primary);
    background-color: #f0f5ff;
}

/* Conditional Fields Styling */
.conditional-fields {
    margin-top: 1rem;
}

/* Required field indicator */
.required-field::after {
    content: '*';
    color: var(--color-error);
    margin-left: 4px;
}

/* Phone input with country code */
.phone-input-container {
    display: flex;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    height: 42px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: var(--color-text);
    font-size: 0.9rem;
}

.phone-input {
    flex: 1;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* State/Province input styling */
.state-province-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: var(--bg-primary);
    color: var(--color-text);
}

.form-group input:focus,
.form-group select:focus,

.form-group input.error,
.form-group select.error {
    border-color: #ff3333;
    background-color: #fff8f8;
}

.form-group .error-message,
.signup-form .error-message {
    color: #ff3333;
    font-size: 0.85rem;
    margin-top: 0.4rem;
    display: block;
    text-align: left;
    padding: 0;
}

.form-submit {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.signup-submit-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    background-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 2px 5px rgba(67, 97, 238, 0.25);
    cursor: pointer;
    min-width: 180px;
}

.login-link {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.login-link a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 400;
}

/* Responsive adjustments for signup page */
@media (max-width: 480px) {
    .form-submit {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .signup-submit-btn {
        width: 100%;
    }
    
    /* Mobile spacing adjustments */
}

/* Login Page Styles */
.login-page {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    min-height: calc(100vh - 60px);
}

.login-container {
    width: 100%;
    max-width: 400px;
}

.login-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-form-wrapper h1 {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    text-align: center;
}

.login-subtitle {
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 300;
}

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

.login-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-text);
}

.login-form input[type="email"],
.login-form input[type="password"] {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.password-input-wrapper {
    position: relative;
}

.show-password-btn {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.25rem;
}

.checkbox-container {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: 300;
}

.checkbox-container input[type="checkbox"] {
    margin-right: 0.5rem;
}

.login-btn-submit {
    width: 100%;
    background-color: var(--color-primary);
    color: white;
    padding: 0.875rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    margin-top: 1rem;
}

.login-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.login-footer p {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.forgot-password-link,
.signup-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 400;
}

/* Mobile responsiveness for login page */
@media (max-width: 480px) {
    .login-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .login-form-wrapper h1 {
        font-size: 1.5rem;
    }
}
/* Post Show Page Styles */
.post-show-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
}

.post-show-content .form {
    background-color: var(--bg-primary);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.post-show-content .form-actions {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.post-show-content .primary-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}

.post-show-content .secondary-btn {
    background-color: #6c757d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
}


/* Phone Input with Country Code Prefix */
.phone-input-container {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    overflow: hidden;
}



.country-code-prefix {
    background-color: var(--bg-secondary);
    padding: 0.75rem 1rem;
    border-right: 1px solid #ddd;
    font-weight: 500;
    color: var(--color-text-muted);
    user-select: none;
    white-space: nowrap;
    min-width: 60px;
    text-align: center;
}

.phone-input-container input[type="tel"] {
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    flex: 1;
    font-size: 1rem;
    background: transparent;
}


/* Form Header with Edit Genres Button */
.form-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.form-header-top h2 {
    margin: 0;
    flex: 1;
}

.back-to-profile-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    align-items: center;
    gap: 0.5rem;
}




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

.currency-symbol {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-weight: 500;
}

#show-cost {
    padding-left: 25px;
}

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

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--color-primary);
    flex-shrink: 0;
}

.checkbox-group label {
    display: inline;
    margin-bottom: 0;
    font-size: 15px;
    font-weight: 400;
    color: #495057;
    line-height: 1.4;
    cursor: pointer;
}

/* Success Banner Styles */
.success-banner {
    background-color: #4CAF50;
    color: white;
    padding: 12px 0;
    text-align: center;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

.success-banner p {
    margin: 0;
    font-weight: 500;
    font-size: 16px;
}

.success-banner.fade-out {
    animation: fadeOut 0.5s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Delete Button Styles */
.delete-btn {
    background-color: var(--color-error);
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
}

/* Image Lightbox Styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-close {
    position: absolute;
    top: -15px;
    right: -15px;
    font-size: 32px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}

#lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

/* Not Logged In Discover Page Styles */
.not-logged-in-section {
    padding: 1rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.signup-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
}

.signup-hero h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e1e5e9;
}

.benefit-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.benefit-item h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: var(--color-text-secondary);
    line-height: 1.4;
    font-size: 0.9rem;
}

.cta-section {
    margin-top: 2rem;
}

.primary-cta-btn {
    display: inline-block;
    background: var(--color-primary);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.primary-cta-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Dual Ticket Buttons Styling */
.ticket-header {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0;
    text-align: left;
}

.ticket-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
}

.ticket-button {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    color: inherit;
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
}

.bandsurf-button {
    background-color: #b4b6b8; /* Grey */
}

.ticketmaster-button {
    background-color: #024DDF; /* Blue */
}

.stubhub-button {
    background-color: #3D1B72; /* Purple */
}

.vividseats-button {
    background-color: #04092C; /* Red */
}

.seatgeek-button {
    background-color: #FF6F5F; /* Purple */
}

.ticket-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.secondary-cta {
    margin-top: 1rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.login-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

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

/* Venue Page Styles - Mirror Artist Layout */
.venue-page .profile-header {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
    padding: 0 0 1rem 0;
    border-bottom: 1px solid #eee;
    justify-content: flex-start;
}

.venue-page .venue-image-container {
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.venue-page .venue-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    background-color: #f0f4ff;
    border: 1px solid #e0e4f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-primary);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.venue-page .venue-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.venue-page .venue-image-placeholder {
    font-size: 3rem;
    color: var(--color-primary);
}

.venue-page .venue-info {
    flex: 1;
    text-align: left;
    padding-left: 0;
    min-width: 0;
}

.venue-page .venue-info h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.venue-page .venue-address {
    color: var(--color-text-secondary);
    font-size: 1rem;
    margin-bottom: .7rem;
    line-height: 1.4;
}

.venue-page .venue-address div {
    margin-bottom: 0.25rem;
}

.venue-page .venue-address div:last-child {
    margin-bottom: 0;
}

.venue-page .venue-links.header-links {
    display: flex;
    gap: 0.9rem;
    margin-top: 0.2rem;
    padding-left: 0;
}

.venue-page .venue-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
    color: var(--color-text);
}

.venue-page .venue-link .link-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Venue Page Show Cards - Use existing event-card styling */
.venue-page .show-card {
    flex-direction: row !important;
    align-items: center !important;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.venue-page .event-date {
    min-width: 20px;
    text-align: center;
}

.venue-page .event-month,
.venue-page .event-day {
    font-weight: 600;
}

.venue-page .event-info {
    flex: 3;
    min-width: 0;
    max-width: calc(100vw - 120px); /* Ensure it doesn't exceed viewport */
    overflow: hidden;
}

.venue-page .event-title,
.venue-page .show-name,
.venue-page .event-artist {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
}

.venue-page .event-artist a {
    color: #1f2937;
    text-decoration: none;
}

.venue-page .event-artist a:hover {
    color: #4361ee;
    text-decoration: underline;
}

.venue-page .event-meta {
    margin: 0;
}

.venue-page .event-time {
    font-size: 14px;
    color: #6b7280;
    font-weight: 400;
}

.venue-page .show-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.venue-page .details-button {
    background: var(--color-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    min-width: auto !important;
}

.venue-page .details-button:hover {
    background: var(--color-primary-dark);
}

/* Venue Page Content Layout - Mirror Artist Grid */
@media (min-width: 769px) {
    .venue-page .profile-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: 
            "about venue-info"
            "shows shows";
        gap: 20px;
        row-gap: 20px;
    }
    
    .venue-page #about-section {
        grid-area: about;
    }
    
    .venue-page #venue-info-section {
        grid-area: venue-info;
        align-self: start;
    }
    
    .venue-page #shows-section {
        grid-area: shows;
    }
}

.venue-loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    color: var(--color-text-secondary);
}

.no-shows-message {
    text-align: center;
    padding: 2rem;
    color: var(--color-text-secondary);
}

/* Venue Setup/Info Page Styles */
.venue-setup-section {
    min-height: 100vh;
    padding: 2rem 0;
    background: var(--bg-primary);
}

.setup-header {
    text-align: center;
    margin-bottom: 3rem;
}

.setup-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
}

.setup-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin: 0 0 2rem 0;
}

.setup-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 300px;
    margin: 0 auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.venue-setup-section .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.progress-step.completed .step-number {
    background: var(--color-primary);
    color: white;
}

.progress-step.active .step-number {
    background: var(--color-primary);
    color: white;
}

.progress-step span {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
}

.progress-line {
    width: 60px;
    height: 2px;
    background: var(--color-primary);
}

.venue-setup-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-section {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.5rem 0;
}

.section-description {
    color: var(--color-text-secondary);
    margin: 0 0 1.5rem 0;
}

/* Venue image preview - match post-show styling exactly */
.signup-section .image-preview.show-image {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--border-color);
}

.signup-section .image-preview.show-image img,
.signup-section .image-preview.show-image .show-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.signup-section .image-preview.show-image:hover {
    border-color: var(--color-primary);
}

.upload-placeholder {
    text-align: center;
    color: var(--color-text-secondary);
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.upload-placeholder p {
    margin: 0 0 0.25rem 0;
    font-weight: 500;
}

.upload-hint {
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
}

.venue-setup-section .preview-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.upload-button:hover {
    background: var(--color-primary-dark);
}

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

.input-with-icon {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
}

.input-with-icon input {
    padding-left: 2.5rem;
}

.field-hint {
    display: block;
    font-size: 0.8rem;
    color: var(--color-text-tertiary);
    margin-top: 0.25rem;
}

.skip-button {
    background: transparent;
    color: var(--color-text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-right: 1rem;
}

.skip-button:hover {
    background: var(--bg-hover);
    color: var(--color-text-primary);
}

.complete-button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.complete-button:hover {
    background: var(--color-primary-dark);
}

.complete-button:disabled {
    background: var(--color-text-tertiary);
    cursor: not-allowed;
}

/* Mobile responsiveness for venue setup */
@media (max-width: 768px) {
    .venue-setup-section {
        padding: 1rem 0;
    }
    
    .setup-header h1 {
        font-size: 2rem;
    }
    
    .form-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .venue-setup-section .image-preview {
        width: 150px;
        height: 150px;
    }
}

/* Dashboard Button Styles */
.dashboard-button {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1rem;
}

.dashboard-button:hover {
    background: var(--color-primary-dark);
}

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

/* Venue Ownership Message Styles */
.venue-ownership-message {
    background: #f8f9ff;
    border: 1px solid var(--color-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
}

.venue-ownership-message p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.venue-ownership-message p:last-child {
    margin-bottom: 0;
}

.venue-ownership-message strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Venue Home Page Styles */
.venue-home-page {
    padding: 2rem 0;
    min-height: 100vh;
    background: var(--bg-primary);
}

.venue-home-header {
    text-align: center;
    margin-bottom: 3rem;
}

.venue-home-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.venue-home-header p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
}

.venue-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid var(--border-color);
}

.stat-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
}

.stat-info h3 {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0;
}

.venue-actions {
    margin-bottom: 3rem;
}

.venue-actions h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

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

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.action-btn.primary {
    background: var(--color-primary);
    color: white;
}

.action-btn.primary:hover {
    background: var(--color-primary-dark);
}

.action-btn.secondary {
    background: var(--bg-secondary);
    color: var(--color-text-primary);
    border: 1px solid var(--border-color);
}

.action-btn.secondary:hover {
    background: var(--color-primary);
    color: white;
}

.btn-icon {
    font-size: 1.2rem;
}

.recent-activity h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.activity-list {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

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

.activity-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.activity-content p {
    margin: 0;
}

.activity-content p:first-child {
    color: var(--color-text-primary);
    font-weight: 500;
}

.activity-time {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

/* Venue Details Section Styles */
.venue-details-container {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.venue-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.detail-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 0.25rem 0;
}

.detail-content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Profile Actions Styling - Artist Profile Page */
.profile-page .profile-actions,
.profile-page .contact-support {
    margin-top: 2rem;
}

.profile-page .profile-actions h2,
.profile-page .contact-support h2 {
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    color: var(--color-text-primary) !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid var(--color-primary) !important;
}

.profile-page .action-buttons-stack,
.profile-page .support-buttons-stack {
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
    max-width: 400px !important;
}

.profile-page .action-buttons-stack .action-btn,
.profile-page .support-buttons-stack .action-btn {
    padding: 1rem 1.5rem !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    width: 100% !important;
    display: block !important;
    margin-bottom: 0 !important;
}

.profile-page .action-buttons-stack .action-btn.primary {
    background: var(--color-primary) !important;
    color: white !important;
}

.profile-page .action-buttons-stack .action-btn.primary:hover {
    background: var(--color-primary-dark) !important;
}

.profile-page .action-buttons-stack .action-btn.secondary {
    background: white !important;
    color: var(--color-primary) !important;
    border: 2px solid var(--color-primary) !important;
}

.profile-page .action-buttons-stack .action-btn.secondary:hover {
    background: var(--color-primary) !important;
    color: white !important;
}

.profile-page .action-buttons-stack .action-btn.danger {
    background: #dc3545 !important;
    color: white !important;
}

.profile-page .action-buttons-stack .action-btn.danger:hover {
    background: #c82333 !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .venue-details-container {
        gap: 0.75rem;
    }
    
    .venue-detail-item {
        padding: 0.75rem;
    }
    
    .detail-icon {
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
    
    .venue-home-header h1 {
        font-size: 2rem;
    }
    
    .venue-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .venue-page .profile-header {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        gap: 1rem;
    }
    
    .venue-page .venue-image-container {
        margin-right: 0;
    }
    
    .venue-page .venue-image {
        width: 150px;
        height: 150px;
    }
    
    .venue-page .venue-info {
        text-align: left;
        justify-content: flex-start;
    }
    
    .venue-page .venue-info h1 {
        font-size: 2rem;
    }
    
    .venue-page .venue-links {
        justify-content: flex-start;
    }
    
    .venue-page .show-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .venue-page .details-button {
        min-width: 100px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .not-logged-in-section {
        min-height: calc(100vh - 80px); /* Account for navigation */
        padding: 0.5rem 0;
    }
    
    .signup-hero {
        padding: 1rem 1rem;
    }
    
    .signup-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .benefits-grid {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        padding: 0.75rem;
    }
    
    .benefit-icon {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }
    
    .benefit-item h3 {
        font-size: 0.9rem;
        margin-bottom: 0.125rem;
    }
    
    .benefit-item p {
        font-size: 0.8rem;
    }
    
    .cta-section {
        margin-top: 1.5rem;
    }
    
    .primary-cta-btn {
        padding: 0.75rem 1.75rem;
        font-size: 0.9rem;
    }
    
    .secondary-cta {
        margin-top: 0.75rem;
        font-size: 0.8rem;
    }
}




.form-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Edit Show Button Styles */
.edit-show-btn {
    background-color: var(--color-primary);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
}




.event-actions-column {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.going-count {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    text-align: right;
}

/* Profile Header Layout - REMOVED DUPLICATE */

.account-settings-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}




/* Account Settings Page */
.account-set.artist-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    transform: translateY(0);
}

.setting-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #f9f9f9;
    gap: 15px;
    min-height: 140px;
    text-align: center;
}


.setting-info {
    margin-bottom: 5px;
}

.setting-info h3 {
    margin: 0 0 8px 0;
    color: var(--color-text);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
}

.setting-info p {
    margin: 0;
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.4;
    max-width: 280px;
}

.setting-btn {
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    min-width: 140px;
    text-align: center;
}




.logout-btn {
    background-color: var(--color-error) !important;
}




/* Profile Tabs */
.profile-tabs {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-nav {
    display: flex;
    background: var(--bg-primary);
    border-bottom: 1px solid #e0e0e0;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-muted);
    border-bottom: 3px solid transparent;
}


.tab-btn.active {
    background: white;
    color: #007bff;
    border-bottom-color: #007bff;
}

.tab-content {
    position: relative;
    min-height: calc(100vh - 300px);
    overflow-y: auto;
}

.tab-pane {
    display: none;
    padding: .25rem;
    animation: fadeIn 0.3s ease;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.tab-pane.active {
    display: flex;
}

.tab-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-muted);
}

.tab-empty-state h3 {
    margin: 0 0 10px 0;
    font-size: 24px;
    font-weight: 500;
    color: var(--color-text);
}

.tab-empty-state p {
    margin: 0;
    font-size: 16px;
    color: var(--color-text-muted);
}


/* Followed Artists */
.followed-artists-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.followed-artists-list {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
    width: 95%;
    margin: 0 auto;
}

.artist-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    margin-bottom: 8px;
    background: var(--bg-primary);
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.artist-item:hover {
    background: #f8f9fa;
}

.artist-profile-link {
    color: var(--color-text);
    text-decoration: none;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.artist-profile-link:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

.unfollow-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 12px;
    font-weight: 500;
    width: 75px;
    text-align: center;
    transition: background-color 0.2s ease;
}

.unfollow-btn:hover {
    background-color: #c82333;
}




.unfollow-btn:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.unfollow-btn.confirm-unfollow {
    background-color: var(--color-error);
    animation: pulse 1s infinite;
}


@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
}

.loading-state {
    text-align: center;
    padding: 40px;
    color: var(--color-text-muted);
    font-size: 16px;
}


/* Followers Analytics Page Styles */
/* Fix grid layout breaking dropdown on followers page */
.followers-page .profile-content {
    display: block;
}

.followers-analytics {
    max-width: 1400px;
    width: 90%;
    margin: 0 auto;
    padding: 20px;
}

.followers-analytics .followers-summary {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
}

.followers-analytics .summary-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e9ecef;
    flex: 1;
    display: block;
}

.summary-card h4 {
    margin: 0 0 12px 0;
    font-size: 16px;
    font-weight: normal;
    color: #495057;
    letter-spacing: normal;
}

.stat-number {
    font-size: 32px;
    font-weight: 500;
    color: var(--color-primary);
    margin: 0;
}

.filter-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.filter-section label {
    font-weight: 500;
    color: #495057;
    white-space: nowrap;
}

.form-select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 14px;
    background: white;
    color: #495057;
    min-width: 200px;
}



.form-select option {
    padding: 8px 12px;
    background: white;
    color: #495057;
}



.followers-table-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.table-wrapper {
    overflow-x: auto;
}

.table-header {
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
    background: var(--bg-primary);
}

.table-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

.table-title-section {
    flex: 1;
}

.table-header h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    font-weight: 500;
    color: #212529;
}

.table-info {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.followers-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.followers-table th {
    background: var(--bg-primary);
    padding: 12px 16px;
    text-align: left;
    font-weight: 500;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
    white-space: nowrap;
}

.followers-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #dee2e6;
    color: #212529;
}


.followers-table tbody tr:last-child td {
    border-bottom: none;
}

.loading-row,
.empty-row,
.error-row {
    text-align: center;
    padding: 40px 16px;
    color: #6c757d;
    font-style: italic;
}

/* Followers table column styling */
.followers-table .state-column {
    width: 15%;
    max-width: 80px;
}

.followers-table .city-column {
    width: 65%;
}

.followers-table .followers-column {
    width: 20%;
    text-align: center;
    font-weight: 500;
}

.error-row {
    color: var(--color-error);
}

/* Responsive Design */
@media (max-width: 768px) {
    .followers-analytics {
        padding: 15px;
    }
    
    .followers-summary {
        flex-direction: column !important;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .summary-card {
        padding: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .table-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .filter-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%;
        position: relative;
        z-index: 1001;
    }
    
    .form-select {
        width: 100%;
        min-width: unset;
        position: relative;
        z-index: 1000;
    }
    
    .table-header {
        padding: 15px;
    }
    
    .table-header h3 {
        font-size: 16px;
    }
    
    .followers-table {
        font-size: 13px;
    }
    
    .followers-table th,
    .followers-table td {
        padding: 10px 12px;
    }
    
    .followers-table .state-column {
        width: 20%;
        max-width: 60px;
    }
    
    .followers-table .city-column {
        width: 60%;
    }
    
    .followers-table .followers-column {
        width: 20%;
    }
}

@media (max-width: 480px) {
    .followers-analytics {
        padding: 10px;
    }
    
    .summary-card {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .followers-table th,
    .followers-table td {
        padding: 8px 10px;
    }
    
    .followers-table .state-column {
        width: 25%;
        max-width: 50px;
    }
    
    .followers-table .city-column {
        width: 55%;
    }
    
    .followers-table .followers-column {
        width: 20%;
    }
}

/* My Shows Styles */
.my-shows-container {
    padding: 20px;
    width: 100%;
}

.my-shows-loading,
.my-shows-error {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.my-shows-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.show-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border: 1px solid #e0e6ed;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-sizing: border-box;
}


.show-card.going {
    border-color: #28a745;
    background-color: #f8fff9;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.1);
}

.show-info {
    flex: 1;
    min-width: 0;
}

.show-artist-date {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.artist-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-primary);
    text-decoration: none;
}


/* Specific styling for artist links in My Shows section */
.show-card .artist-link {
    text-decoration: underline;
}


.date-separator {
    color: #6c757d;
    font-weight: 400;
    padding: 0 8px;
}


.show-venue-location {
    font-size: 14px !important;
    color: #495057;
    margin-bottom: 6px;
}

.show-price {
    font-size: 14px;
    color: #28a745;
    font-weight: 500;
}

.show-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: nowrap;
    width: auto;
}

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

.cant-go-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    flex-shrink: 0;
}

.cant-go-input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--color-error);
}

.cant-go-label {
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    cursor: pointer;
}

.going-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

/* Artist Ownership Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(2px);
}

.modal-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-header {
    position: relative;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 500;
    color: #111827;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6b7280;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
}


.modal-body {
    padding: 20px 24px;
}

.modal-body p {
    margin: 0 0 16px 0;
    line-height: 1.6;
    color: #374151;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.artist-info {
    background-color: #f9fafb;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}

/* Shows Today Tab Styles */
.shows-today-content {
    padding: 0 0 20px 0;
}

.shows-today-content .search-bar {
    margin: 0 0 20px 0;
    max-width: 100%;
    border-radius: 8px;
}

.shows-today-content .search-bar input {
    border-radius: 8px;
}

.shows-today-content .search-btn {
    border-radius: 6px;
}

.loading-state {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
}

.city-shows-list {
    margin-top: 20px;
}

.city-shows-list h4 {
    margin-bottom: 20px;
    color: #1f2937;
    font-size: 18px;
    font-weight: 500;
}

.shows-section {
    margin-bottom: 30px;
}

.shows-section h5 {
    margin-bottom: 15px;
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 8px;
    border-bottom: 2px solid #e5e7eb;
}

.city-show-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}


.city-show-card.today-show {
    border-left: 4px solid #10b981;
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

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

.show-header h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.artist-link {
    color: var(--color-primary);
    text-decoration: none;
}


.today-badge {
    background: #10b981;
    color: white;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 12px;
    letter-spacing: 0.5px;
}

.show-details {
    margin-bottom: 12px;
}

.show-name {
    font-size: 14px;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.show-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    color: #6b7280;
}

.show-meta span {
    display: flex;
    align-items: center;
}


.show-price {
    color: #059669;
    font-weight: 500;
}

.show-actions {
    display: flex;
    justify-content: flex-end;
}

.ticket-btn {
    background: #4f46e5;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
}


@media (max-width: 768px) {
    
    .show-meta {
        flex-direction: column;
        gap: 4px;
    }
    
    .show-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .today-badge {
        align-self: flex-start;
    }
}

.artist-info p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
}

.artist-info p:last-child {
    margin-bottom: 0;
}

.modal-body .note {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    background-color: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 6px;
    padding: 12px;
    margin-top: 16px;
}

.modal-footer {
    padding: 16px 24px 24px 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.modal-footer .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    min-width: 120px;
}

.modal-footer .btn-primary {
    background-color: var(--color-primary);
    color: white;
}


.modal-footer .btn-secondary {
    background-color: #6b7280;
    color: white;
}

.modal-footer .btn-tertiary {
    background-color: #e5e7eb;
    color: #374151;
}

/* Metro Area Info Styling */
.metro-area-info {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin: 8px 0 16px 0;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--color-primary);
    line-height: 1.4;
}

/* Slug Selection Styles */
.slug-selection {
    margin-top: 20px;
    padding: 20px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.slug-explanation {
    margin-bottom: 20px;
    padding: 16px;
    background-color: #eff6ff;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.slug-explanation p {
    margin: 0 0 8px 0;
    color: #1e40af;
    font-size: 0.95rem;
    line-height: 1.5;
}

.slug-explanation p:last-child {
    margin-bottom: 0;
}

.slug-selection h3 {
    margin: 0 0 16px 0;
    font-size: 1.2rem;
    font-weight: 500;
    color: #111827;
}

.slug-input-container {
    display: flex;
    align-items: center;
    margin: 16px 0;
    background: white;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    overflow: hidden;
    max-width: 400px;
}

.slug-prefix {
    background-color: #f3f4f6;
    padding: 12px 16px;
    font-weight: 500;
    color: #374151;
    border-right: 1px solid #d1d5db;
    white-space: nowrap;
}

.slug-input-container input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.slug-input-container input:focus {
    box-shadow: 0 0 0 2px rgba(67, 97, 238, 0.1);
}

.helper-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 8px 0 16px 0;
    font-style: italic;
}

.slug-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin: 8px 0 0 0;
    font-weight: 500;
    padding: 8px 12px;
    background-color: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
}

.slug-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
}


/* Mobile responsiveness for modal */
@media (max-width: 640px) {
    .modal-content {
        width: 95%;
        margin: 20px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    .slug-buttons {
        flex-direction: column;
    }
    
    .slug-buttons .btn {
        width: 100%;
    }
    
    .slug-input-container {
        max-width: 100%;
    }
    
    .slug-prefix {
        font-size: 0.9rem;
        padding: 10px 12px;
    }
    
    .slug-input-container input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* Ownership Pending Page Styles */
.ownership-pending-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
    }
    40% {
    }
    60% {
    }
}

.ownership-pending-container h1 {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 2rem;
}

.pending-message {
    margin-bottom: 30px;
}

.pending-message p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.6;
}

.artist-info-box {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    text-align: left;
}

.artist-info-box h3 {
    margin: 0 0 15px 0;
    color: #111827;
    text-align: center;
}

.artist-info-box p {
    margin: 8px 0;
    color: #374151;
}

.status-pending {
    color: #f59e0b;
    font-weight: 500;
    background-color: #fef3c7;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.next-steps {
    margin: 30px 0;
    text-align: left;
}

.next-steps h3 {
    text-align: center;
    color: #111827;
    margin-bottom: 20px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-icon {
    font-size: 1.2rem;
    width: 30px;
    text-align: center;
}

.step-text {
    color: #374151;
    line-height: 1.5;
}

.timeline-info {
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
}

.timeline-info p {
    margin: 8px 0;
    color: #1e40af;
}

.timeline-info a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}


.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.action-buttons .btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    min-width: 140px;
}

/* Mobile responsiveness for ownership pending page */
@media (max-width: 640px) {
    .ownership-pending-container {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .success-icon {
        font-size: 3rem;
    }
    
    .ownership-pending-container h1 {
        font-size: 1.5rem;
    }
}

.going-input {
    margin-right: 8px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #28a745;
}

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

/* Legal Pages Styling */
.legal-section {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-text {
    line-height: 1.7;
    color: #495057;
}

.legal-text h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 8px;
}

.legal-text p {
    margin-bottom: 15px;
    font-size: 1rem;
}

.legal-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 0 15px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .legal-text h2 {
        font-size: 1.2rem;
    }
}

.show-tickets {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.ticket-link {
    background: var(--color-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}


.ticket-unavailable {
    color: #6c757d;
    font-size: 14px;
    font-style: italic;
}

/* Disabled state for checkbox while processing */
.going-input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Mobile responsiveness for show cards */
@media (max-width: 768px) {
    .my-shows-container {
        padding: 10px;
    }
    
    .show-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
        margin-bottom: 12px;
    }
    
    .show-actions {
        justify-content: space-between;
        min-width: auto;
        gap: 20px;
        flex-wrap: nowrap;
    }
    
    .ticket-link {
        min-width: 100px;
        text-align: center;
    }
}

/* Fan Update Page Styles */
.fan-update-form {
    margin-top: 2rem;
}

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

.fan-update-form label {
    display: block;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.form-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.5;
    resize: vertical;
    min-height: 100px;
}


.form-textarea::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.character-count {
    text-align: right;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.fan-count-info {
    background: var(--bg-primary);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
    margin: 1.5rem 0;
}

.fan-count-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
}

.fan-count-info span {
    font-weight: 500;
    color: var(--color-primary);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e1e5e9;
}

.btn.btn-secondary {
    background: #6c757d;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}


.btn.btn-primary {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}


/* Mobile responsiveness for fan update */
@media (max-width: 768px) {
    .fan-update-form {
        margin-top: 1.5rem;
    }
    
    .form-textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn.btn-secondary {
        width: 100%;
        padding: 1rem;
    }
    
    .btn.btn-primary {
        width: 100%;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .my-shows-container {
        padding: 10px;
    }
    
    .show-card {
        padding: 16px;
        gap: 16px;
    }
    
    .artist-link {
        font-size: 16px;
    }
    
    .show-date-time,
    .show-venue-location,
    .show-price {
        font-size: 13px;
    }
    
    .show-actions {
        flex-direction: row;
        align-items: center;
        gap: 20px;
        justify-content: space-between;
    }
    
    .ticket-link {
        width: 100%;
    }
}

/* Error Banner Styles */
.error-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--color-error);
    color: white;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: slideDown 0.3s ease-out;
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.close-error {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    margin-left: 15px;
    opacity: 0.8;
}


@keyframes slideDown {
    from {
    }
    to {
    }
}

/* Legal Pages Styles */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 40px;
    border-bottom: 2px solid var(--color-primary);
    position: relative;
    z-index: 1;
}

.legal-header h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.legal-dates {
    color: var(--color-text-light);
    font-size: 14px;
    line-height: 1.4;
    padding-left: 10px;
}

.legal-content {
    line-height: 1.6;
    color: var(--color-text);
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--color-primary);
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
}

.legal-content h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--color-text);
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.legal-content h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: var(--color-text);
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
}

.legal-content p {
    margin-bottom: 15px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--color-primary);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.legal-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.back-link {
    display: inline-block;
    padding: 12px 24px;
    background: var(--color-primary);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.2s;
}

.back-link:hover {
    background: var(--color-primary-dark);
    text-decoration: none;
}

@media (max-width: 768px) {
    .legal-container {
        padding: 20px 15px;
    }
    
    .legal-header h1 {
        font-size: 28px;
    }
    
    .legal-content h2 {
        font-size: 22px;
    }
    
    .legal-content h3 {
        font-size: 18px;
    }
}

/* PROFILE FAN PAGE DESKTOP FIXES */
@media (min-width: 768px) {
    /* Profile header - break out of ALL constraints and take 70% of viewport */
    .profile-page .profile-header {
        position: relative !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 70vw !important;
        margin: 0 0 1.5rem 0 !important;
        padding: 0 0 1.5rem 0 !important;
    }
    
    .profile-page .profile-header-content {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Container and tabs - 80% width with reduced top margin */
    .profile-page .container {
        width: 80% !important;
        max-width: none !important;
        padding: 0 2rem !important;
        margin-top: 0 !important;
    }
    
    .profile-page .profile-tabs {
        width: 100% !important;
        max-width: none !important;
        margin: 2rem 0 0 0 !important;
    }
}

/* ARTIST HOME PAGE DESKTOP FIXES */
@media (min-width: 768px) {
    /* Artist profile section - 70% width */
    .profile-section .container {
        width: 70% !important;
        max-width: none !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    /* Fix artist action buttons - make them 30% bigger */
    .profile-btn.artist-action-btn {
        padding: 10px 18px !important;
        font-size: 15px !important;
        font-weight: 400 !important;
        margin: 0 8px !important;
        text-align: center !important;
        height: auto !important;
        line-height: 1.2 !important;
        min-height: auto !important;
        box-sizing: border-box !important;
    }
    
    /* Artist action buttons container */
    .artist-action-buttons {
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
        height: auto !important;
        min-height: auto !important;
    }
}

/* SEND UPDATE PAGE DESKTOP FIXES */
@media (min-width: 768px) {
    /* Center everything in one column */
    .fan-update-page .profile-section .container {
        width: 60% !important;
        max-width: 800px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    /* Stack all content vertically in one column - no gap, use individual margins */
    .fan-update-page .profile-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0 !important;
    }
    
    /* Make all content blocks full width of the column */
    .fan-update-page .notification-disclaimer,
    .fan-update-page .notification-disclaimer-not,
    .fan-update-page .fan-update-form {
        width: 100% !important;
        max-width: none !important;
    }
    
    /* Center the form elements */
    .fan-update-page .fan-update-form {
        text-align: left !important;
    }
    
    /* Center the return button */
    .fan-update-page .form-actions {
        text-align: center !important;
        margin-top: 0.5rem !important;
    }
    
    /* Specific spacing adjustments - control each element individually */
    /* More space above red notification box */
    .fan-update-page .notification-disclaimer-not {
        margin-top: 2rem !important;
        margin-bottom: 1rem !important;
    }
    
    /* Less space between blue box and text area */
    .fan-update-page .notification-disclaimer {
        margin-top: 0 !important;
        margin-bottom: 0.75rem !important;
    }
    
    /* Text area form spacing */
    .fan-update-page .fan-update-form {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Less space between text area and fan count */
    .fan-update-page .fan-update-form .form-group {
        margin-bottom: 0.5rem !important;
    }
    
    .fan-update-page .fan-count-info {
        margin-top: 0.25rem !important;
        margin-bottom: 1rem !important;
    }
}

/* POST SHOW AND EDIT SHOW PAGES DESKTOP FIXES */
@media (min-width: 768px) {
    /* Target pages with post-show-content or edit-show-content - 20% narrower */
    .post-show-content,
    .edit-show-content {
        max-width: 640px !important;
        margin: 0 auto !important;
        padding: 0 2rem !important;
    }
    
    /* Override grid layout for these specific content types */
    .post-show-content .profile-content,
    .edit-show-content .profile-content,
    .profile-section:has(.post-show-content) .profile-content,
    .profile-section:has(.edit-show-content) .profile-content {
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        max-width: none !important;
    }
    
    /* Center container for pages with these content types - 20% narrower */
    .profile-section:has(.post-show-content) .container,
    .profile-section:has(.edit-show-content) .container {
        width: 56% !important;
        max-width: 720px !important;
        margin: 0 auto !important;
    }
}

/* PROFILE ARTIST PAGE DESKTOP FIXES */
@media (min-width: 768px) {
    /* Make profile-artist page 20% narrower than profile-fan (80% -> 64%) */
    .profile-page:has(.profile-info) .container {
        width: 64% !important;
        max-width: none !important;
        padding: 0 2rem !important;
        margin-top: 0 !important;
    }
    
    /* Add spacing between sections */
    .profile-page:has(.profile-info) .profile-info,
    .profile-page:has(.profile-info) .contact-support {
        margin-bottom: 2rem !important;
    }
    
    /* Ensure proper spacing for all profile content sections */
    .profile-page:has(.profile-info) .profile-content > div {
        margin-bottom: 2rem !important;
    }
    
    .profile-page:has(.profile-info) .profile-content > div:last-child {
        margin-bottom: 0 !important;
    }
}

/* Loading Spinner Styles */
.artist-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
}

.spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4361ee;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 12px;
}

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

.loading-text {
    color: var(--color-text-muted);
    font-size: 16px;
    font-weight: 500;
}

/* Hide elements during loading */
.loading-hidden {
    display: none !important;
}

/* Full-page loading overlay */
#loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    gap: 16px;
}

#loading-overlay .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #4361ee;
    margin: 0;
}

#loading-overlay p {
    color: var(--color-text-primary);
    font-size: 18px;
    font-weight: 500;
    margin: 0;
}

/* Global Placeholder Text Styling - Light Grey */
input::placeholder,
textarea::placeholder,
input[type="text"]::placeholder,
input[type="url"]::placeholder,
input[type="tel"]::placeholder,
input[type="search"]::placeholder,
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af !important;
    -webkit-text-fill-color: #9ca3af !important;
    opacity: 1 !important; /* Firefox fix */
}

/* Ensure consistent placeholder styling across all browsers */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input[type="text"]::-webkit-input-placeholder,
input[type="url"]::-webkit-input-placeholder,
input[type="tel"]::-webkit-input-placeholder,
input[type="search"]::-webkit-input-placeholder,
.form-group input::-webkit-input-placeholder,
.form-group textarea::-webkit-input-placeholder {
    color: #9ca3af !important;
    -webkit-text-fill-color: #9ca3af !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder,
input[type="text"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="search"]::-moz-placeholder,
.form-group input::-moz-placeholder,
.form-group textarea::-moz-placeholder {
    color: #9ca3af !important;
    opacity: 1 !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder,
input[type="url"]:-ms-input-placeholder,
input[type="tel"]:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
.form-group input:-ms-input-placeholder,
.form-group textarea:-ms-input-placeholder {
    color: #9ca3af !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder,
input[type="text"]:-moz-placeholder,
input[type="url"]:-moz-placeholder,
input[type="tel"]:-moz-placeholder,
input[type="search"]:-moz-placeholder,
.form-group input:-moz-placeholder,
.form-group textarea:-moz-placeholder {
    color: #9ca3af !important;
    opacity: 1 !important;
}

/* Discover Page Styles - Moved from discover.html */
.small-text {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    text-align: center;
}

.connection-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.connection-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.connection-card h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.connection-card p {
    color: var(--color-text);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.connection-card .small-text {
    margin-bottom: 0;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.spotify-connect-btn {
    background: #1DB954;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.spotify-icon {
    width: 20px;
    height: 20px;
}

.connection-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-secondary {
    background: var(--bg-secondary);
    color: var(--color-text);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
    background: var(--border-color);
}

.btn-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-danger {
    background: #dc3545;
    color: white;
}

.btn-danger:hover {
    background: #c82333;
}

@media (max-width: 768px) {
    .connection-card {
        padding: 1.5rem;
    }

    .connection-actions {
        flex-direction: column;
        align-items: center;
    }

    .connection-actions .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* ============================================
   iOS APP-SPECIFIC FIXES - LOCKED BODY SCROLLING
   ============================================ */

/* 1. Lock the body to prevent viewport bounce */
.is-app html,
.is-app body {
    position: fixed !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
    padding-top: 0 !important; /* Padding moves to main */
    background-color: var(--bg-primary) !important;
    overscroll-behavior: none !important;
}

/* 2. Make main scrollable internally */
.is-app main {
    height: 100% !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    /* Padding accounts for header + safe area */
    padding-top: calc(50px + env(safe-area-inset-top, 0px)) !important;
    /* Ensure content can be scrolled past fixed footer */
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px)) !important;
}

/* 3. Fix Header to top of viewport */
.is-app header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    /* Height covers safe area + nav height */
    height: calc(50px + env(safe-area-inset-top, 0px)) !important;
    max-height: none !important;
    padding-top: env(safe-area-inset-top, 0px) !important;
    background-color: var(--bg-primary) !important;
    box-sizing: border-box !important;
    overflow: visible !important;
    transform: translateZ(0);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* 4. Fix Checkbox Size on App */
.is-app .checkbox-container input[type="checkbox"],
.is-app input[type="checkbox"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    border: 1px solid #d1d5db !important;
    border-radius: 3px !important;
    background-color: white !important;
    cursor: pointer !important;
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
}

.is-app .checkbox-container input[type="checkbox"]:checked,
.is-app input[type="checkbox"]:checked {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e") !important;
    background-size: 100% 100% !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.is-app .checkbox-container input[type="checkbox"] {
    position: absolute !important;
    left: 0 !important;
    top: 3px !important; /* Adjusted for 16px size */
}

.is-app .checkbox-container {
    padding-left: 26px !important; /* Tightened from 36px */
}


