.blink {
    width: auto;
    height: auto;
    padding: 0;
    text-align: center;
    line-height: normal;
}

/* Animasi hanya pada label (teks) */
.blink .label {
    animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {
    0%   { opacity: 0; }
    50%  { opacity: 0.5; }
    100% { opacity: 1; }
} 

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 650px;
    background: rgba(255, 255, 255, 0.8);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.spinner {
    font-size: 18px;
}

.hr-with-text {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
}

.hr-with-text::before,
.hr-with-text::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #ccc;
}

.hr-with-text:not(:empty)::before {
    margin-right: 1rem;
}

.hr-with-text:not(:empty)::after {
    margin-left: 1rem;
}