﻿#loadingIndicator {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    z-index: 9999; /* Ensures the loading indicator is on top */
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 40px; /* Adjust size as needed */
    height: 40px; /* Adjust size as needed */
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}



#whatsapp{
    margin-bottom: 1vh;
}

#installBtn {
    background: #FF914D;
}

.toast-header {
    background-color: #4CAF50; /* Yeşil arka plan rengi */
    color: black; /* Beyaz metin rengi */
}

.referralCount{
    color : red;
}

.LoginMessage{
    color:red;
}

.whatsapp-contact {
    position: fixed;
    bottom: 90px; /* Same position */
    right: 20px; /* Same alignment */
    background-color: #25d366;
    color: white;
    font-size: 12px; /* Slightly larger font size */
    font-weight: bold;
    padding: 8px 14px; /* Slightly larger padding */
    border-radius: 30px; /* Adjusted border radius */
    text-decoration: none;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); /* Adjusted shadow size */
    transition: all 0.3s ease-in-out;
    z-index: 1000; /* Same z-index */
}

    .whatsapp-contact:hover {
        background-color: #20b858;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.3); /* Adjust shadow size */
    }

.red-text {
    color: red;
}

#toastContainer {
    position: fixed;
    bottom: 1vh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

