.spinner {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    height: 50px; /* Adjust based on your design */
    margin: 20px 0;
    position: relative;
    width: 100%; /* Full width to ensure centering */
}

.spinner .dot {
    width: 12px; /* Slightly larger dots */
    height: 12px;
    margin: 0 5px; /* Space between dots */
    border-radius: 50%;
    background-color: #7dcdc8;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spinner .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner .dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    } 
    40% {
        transform: scale(1);
    }
}
