.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Cor escura com transparência */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Z-index alto para sobrepor outros elementos */
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #c55a1a; /* Cor do topo do loader */
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); border-top: 4px solid #c55a1a; }
    100% { transform: rotate(360deg); border-top: 4px solid #c55a1a; }
}
