/**
 * Manager Pages - Shared Styles
 * Common styling for all backend/manager pages
 */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    min-height: 100vh;
    padding: 20px;
}

.wrap,
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Manager Header */
.artist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    padding: 22px 24px;
    border: 1.5px solid #000;
    box-shadow: 8px 8px 0 #000;
    background: #fff;
}

.brand-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 8px;
}

.manager-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    max-width: 56px;
    max-height: 56px;
    border: 1.2px solid #000;
    padding: 4px;
    background: #fff;
    flex-shrink: 0;
    overflow: hidden;
}

.manager-logo picture,
.manager-logo img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.manager-logo img {
    object-fit: contain;
}

.brand h1 {
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: -0.8px;
    margin-bottom: 8px;
}

.brand p {
    color: #666;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 0;
}

.artist-nav {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.artist-nav a {
    text-decoration: none;
    border: 1.2px solid #000;
    color: #111;
    padding: 8px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    transition: all 0.2s ease;
}

.artist-nav a:hover,
.artist-nav a.active {
    background: #000;
    color: #fff;
}

.auth-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

#user-email {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.logout-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.logout-btn:hover {
    background: #333;
}

@media (max-width: 768px) {
    .artist-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .brand-head {
        align-items: flex-start;
    }
    
    .auth-box {
        width: 100%;
        justify-content: space-between;
    }
}
