.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: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* wrapper agar sejajar ke kanan */
.loader-wrap {
    display: flex;
    align-items: center;
    gap: 8px; /* jarak antara spinner & teks */
}

/* spinner bulat */
.circle {
    width: 22px;
    height: 22px;
    border: 3px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-text {
    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;
}