/* ძირითადი სტილები */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f7f6; /* ღია ნაცრისფერი ფონი */
    color: #333; /* მუქი ტექსტი */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 30px;
    background-color: #fff; /* თეთრი კონტეინერის ფონი */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #007bff; /* ლურჯი აქცენტი */
    margin-bottom: 10px;
    font-size: 2.5em;
}

h2 {
    color: #555;
    margin-top: 0;
    font-size: 1.5em;
}

p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.details {
    margin-top: 30px;
    padding: 15px;
    border-top: 1px solid #eee;
    font-size: 0.9em;
    color: #777;
}

.details a {
    color: #007bff;
    text-decoration: none;
}

.details a:hover {
    text-decoration: underline;
}

/* ანიმაციური დატვირთვის ინდიკატორი */
.loader-wrapper {
    margin-bottom: 30px;
}

.loader {
    border: 8px solid #e3e3e3; /* ღია ნაცრისფერი ბაზა */
    border-top: 8px solid #007bff; /* ლურჯი მბრუნავი ნაწილი */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite; /* ანიმაციის სახელი, ხანგრძლივობა, ტიპი, გამეორება */
    margin: 0 auto; /* ცენტრირება */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* რეაგირება მცირე ეკრანებზე */
@media (max-width: 600px) {
    .container {
        margin: 20px;
    }
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.2em;
    }
    .loader {
        width: 40px;
        height: 40px;
        border-width: 6px;
    }
}