/*
 * Venue Details Styles
 */

.venue-details-page {
    font-family: 'Poppins', sans-serif;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    color: var(--color-text);
}

.venue-header {
    width: 100%;
    padding: 20px 0;
    margin-bottom: 30px;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--gutter);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.title-container {
    display: flex;
    align-items: center;
}

.main-content {
    padding: 0 var(--gutter);
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.back-button {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.back-arrow {
    margin-right: 10px;
}

.page-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.edit-venue-button {
    background-color: var(--color-purple);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.venue-profile-section {
    margin-bottom: 40px;
}

.venue-profile {
    display: flex;
    margin-bottom: 30px;
}

.venue-image {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 30px;
}

.venue-info {
    display: flex;
    flex-direction: column;
}

.venue-name {
    font-size: 28px;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #333;
}

.venue-detail {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.venue-detail-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
    color: var(--color-purple);
}

.stats-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: #333;
}

.chart-container {
    height: 250px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    padding: 10px;
}

.stats-grid {
    display: flex;
    margin-bottom: 40px;
}

.left-column {
    flex: 1;
    margin-right: 30px;
}

.right-column {
    flex: 2;
}

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

.capacity-bar {
    height: 16px;
    background-color: var(--color-background-muted);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.capacity-fill {
    height: 100%;
    background-color: var(--color-purple);
    border-radius: 8px 0 0 8px;
}

.capacity-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.capacity-fraction {
    color: #666;
}

.capacity-percentage {
    font-weight: 600;
    color: #6b46c1;
}

.genres-songs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.genre-chart-container {
    height: 220px;
    position: relative;
    margin-bottom: 15px;
}

.genre-legend {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
}

.genre-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.genre-color {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    margin-right: 8px;
}

.top-songs-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.song-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.song-number {
    width: 22px;
    height: 22px;
    background-color: var(--color-purple);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 10px;
    font-weight: 500;
}

.song-details {
    display: flex;
    flex-direction: column;
}

.song-title {
    font-weight: 500;
    margin-bottom: 2px;
    font-size: 14px;
}

.song-artist {
    font-size: 12px;
    color: #666;
}

@media (max-width: 768px) {
    .venue-profile {
        flex-direction: column;
    }
    
    .venue-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .stats-grid {
        flex-direction: column;
    }
    
    .left-column {
        margin-right: 0;
        margin-bottom: 30px;
    }
    
    .genres-songs-grid {
        grid-template-columns: 1fr;
    }
}