body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main.container {
max-width: 960px;
}

.card-auth {
max-width: 420px;
margin: 2rem auto;
}

.studio-card-imgwrap{
width: 100%;
height: 170px; /* ubah kalau mau lebih tinggi */
background: #f1f3f5;
border-radius: 10px;
overflow: hidden;
}

.studio-card-imgwrap img{
width: 100%;
height: 100%;
display: block;
object-fit: cover;
object-position: center;
}

/* optional: bikin kartu rata */
.studio-card{
height: 100%;
}

/* Custom Dropdown Styling */
.dropdown-menu {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 0.5rem;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
    transform: translateX(5px);
}

.dropdown-divider {
    margin: 0.5rem 1rem;
    opacity: 0.1;
}

/* Header di dalam dropdown */
.dropdown-header-custom {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #adb5bd;
    letter-spacing: 1px;
}