/* Layout full height */
html,
body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa;
    color: #333;
}

select {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Navbar */
.custom-navbar {
    background-color: #5B00FF;
    /* warna utama */
}

/* Section Tata Cara */
.instructions {
    padding: 20px 0px;
    width: 100%;
    border-radius: 10px;
}

.instructions h3 {
    color: #2575fc;
    margin-bottom: 10px;
}

.instructions ol {
    padding-left: 20px;
}

.instructions li {
    margin: 8px 0;
    color: #333;
}

.instructions .highlight {
    background: #2575fc;
    color: white;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.9em;
}

.instructions .highlight {
    background: #2575fc;
    color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.9em;
}

/* Accordion custom */
.accordion-button {
    background-color: #f8f9fa;
    font-weight: 500;
    color: #333;
    transition: background-color 0.2s ease;
}

.accordion-button:not(.collapsed) {
    background-color: #5B00FF;
    color: #fff;
}

.accordion-body ol li {
    margin: 8px 0;
    color: #333;
}

.instructions .highlight {
    background: #2575fc;
    color: #fff;
    padding: 2px 6px;
    border-radius: 5px;
    font-size: 0.9em;
}


/* Primary text accent */
.text-primary-custom {
    color: #5B00FF !important;
}

/* Button */
.btn-primary-custom {
    background-color: #5B00FF;
    color: #fff;
    border: none;
}

.btn-primary-custom:hover {
    background-color: #4a00cc;
    color: #fff;
}

.btn-outline-primary-custom {
    border: 1px solid #5B00FF;
    color: #5B00FF;
}

.btn-outline-primary-custom:hover {
    background-color: #5B00FF;
    color: #fff;
}

/* Footer */
.custom-footer {
    background-color: #5B00FF;
    color: #fff;
    text-align: center;
    padding: 12px;
    margin-top: auto;
    font-size: 0.9rem;
}

