.loader {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
}

.spinner {
    font-size: 48px;
    color: #3498db;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.message {
    margin-top: 20px;
    font-size: 20px;
    color: #555;
}



@keyframes blink {
    0% {
        border-color: red;
        background-color: rgba(255, 0, 0, 0.1); /* Light red background */
    }

    50% {
        border-color: transparent; /* No border color */
        background-color: transparent; /* No background color */
    }

    100% {
        border-color: red;
        background-color: rgba(255, 0, 0, 0.1);
    }
}

.blinking-row {
    animation: blink 1s infinite; /* Adjust duration as needed */
    border: 2px solid red; /* Red border */
   
}