/* styles.css */
/* Định dạng chung cho các tiêu đề */
h1, h2, h3 {
    color: #007bff;
}
.loading-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 1000; /* Đảm bảo nó nằm trên tất cả các phần tử khác */
    width: 100%; /* Đảm bảo chiếm toàn bộ chiều rộng màn hình */
    height: 100%; /* Đảm bảo chiếm toàn bộ chiều cao màn hình */
    pointer-events: none; /* Đảm bảo người dùng không thể tương tác với các phần tử bên dưới */
}

.loading-logo {
    width: 100px; /* Kích thước logo */
    /*animation: rotate-logo 2s linear infinite; /* Logo xoay tròn */
}

@keyframes rotate-logo {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    animation: float-circle 3s infinite;
    opacity: 0.7;
}

.circle-1 {
    background-color: #f39c12; /* Màu vàng */
    animation-delay: 0s;
}

.circle-2 {
    background-color: #e74c3c; /* Màu đỏ */
    animation-delay: 0.5s;
    transform: translate(-60px, -60px);
}

.circle-3 {
    background-color: #0f84f1; /* Màu vàng nhạt */
    animation-delay: 1s;
    transform: translate(60px, -60px);
}

@keyframes float-circle {
    0%,
    100% {
        transform: translateY(-10px) translateX(-10px);
    }
    50% {
        transform: translateY(10px) translateX(10px);
    }
}

