/* Studio Global Styles */
body { 
    background: #e0f2fe; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    display: flex; 
    justify-content: center; 
    align-items: center; 
    min-height: 100vh; 
    margin: 0; 
}

.card { 
    background: white; 
    padding: 2.5rem; 
    border-radius: 12px; 
    width: 100%;
    max-width: 500px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
    border-top: 6px solid #2563eb; 
}

h2, h3 { margin-top: 0; color: #1e293b; }
.subtitle { color: #64748b; font-size: 0.9rem; margin-bottom: 1.5rem; }

input, select { 
    width: 100%; 
    padding: 12px; 
    margin: 8px 0; 
    border: 1px solid #cbd5e1; 
    border-radius: 6px; 
    box-sizing: border-box; 
}

button { 
    width: 100%; 
    padding: 12px; 
    background: #2563eb; 
    color: white; 
    border: none; 
    border-radius: 6px; 
    cursor: pointer; 
    font-weight: bold; 
    transition: 0.2s;
}
button:hover { background: #1d4ed8; }

/* Dashboard Items */
.item { 
    border: 1px solid #e2e8f0; 
    padding: 15px; 
    margin-top: 12px; 
    border-radius: 8px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.status { 
    font-size: 0.75rem; 
    padding: 4px 10px; 
    border-radius: 50px; 
    background: #f1f5f9; 
    font-weight: bold; 
    text-transform: uppercase;
}

/* Link Button (Client View) */
.view-btn {
    display: inline-block;
    margin-top: 8px;
    padding: 6px 14px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}
.view-btn:hover { background: #1d4ed8; }

/* Admin Delete Button */
.del-btn {
    background: #ef4444;
    padding: 6px 12px;
    width: auto;
    font-size: 0.8rem;
    margin-left: 8px;
}
.del-btn:hover { background: #dc2626; }

/* 404 Page Styling */
.error-container { text-align: center; padding: 20px; }
.dragon-art { max-width: 150px; margin-bottom: 20px; border-radius: 50%; }