:root {
    --primary-color: #f8b6c2;
    --primary-dark: #e598a3;
    --text-color: #5a5a5a;
    --white: #ffffff;
}

body {
    background: linear-gradient(to bottom, #ffffff, #ffe6eb);
    color: #5a5a5a;
}

.label-nomor {
    background-color: var(--primary-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white) !important;
    font-weight: bold;
    font-size: 11px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
    border-color: var(--primary-dark) !important;
}

.btn-outline-primary {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    border-color: var(--primary-color);
    color: var(--text-color);
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
}

.btn-check:checked + .btn-outline-primary {
    background-color: var(--primary-dark) !important;
    color: var(--white) !important;
    border: 1px solid var(--primary-dark) !important;
    box-shadow: none !important;
}

.btn-check:checked + .btn-outline-primary .label-nomor {
    background-color: var(--white) !important;
    color: var(--primary-dark) !important;
}

.top-left-label{
    color: var(--white) !important;
    position: absolute;
    bottom: 0;
    left: 0;
    border-top-right-radius: 10px;
    padding: 2px 7px;
    font-size: 10px;
    font-weight: 500;
}

.border-bottom-custom{
    border-bottom: 3px solid var(--primary-dark);
}

.bottom-center-label {
    position: absolute;
    top: 0 !important; 
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white) !important;
    color: var(--text-color) !important;
    padding: 2px 6px;
    font-size: 13px !important;
    font-weight: 600;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    text-align: center;
}


.img-theme{
    object-fit: cover;
    object-position: center center;
    max-height: 260px;
}

.custom-badge{
    font-size: 11.4px !important;
    border-bottom-right-radius: 0px !important;
}

@media (max-width: 576px) {
    .img-theme {
        max-height: 200px;
    }
    .bottom-center-label{
        font-size: 10px !important;
    }
}

.menu-tema{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    box-shadow: 0px -2px 4px rgba(0, 0, 0, 0.1);
    padding: 10px 20px 20px 10px;
}
.bottom-overlay{
    bottom: 20px;
}
#change-theme .bottom-overlay{
    bottom: 80px;
}

.text-pn{
    color: #f084a2 !important;
}

.btn-secondary.btn-pn{
    background-color: #f084a2;
    color: #fff;
    border-color: #f084a2;
}

.btn-secondary.btn-pn:hover{
    background-color: transparent;
    color: #f084a2;
    border-color: #f084a2;
}