@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@400;700&display=swap');

body {
    font-family: 'Vazirmatn', sans-serif;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    direction: rtl;
    color: #333;
}

.container {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
}

.logo-container {
    margin-bottom: 30px;
}

.logo {
    max-width: 150px;
    height: auto;
}

.links-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-item {
    background-color: #f8f9fa;
    color: #343a40;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Icons on the right */
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
}

.link-item:hover {
    background-color: #007bff;
    color: #ffffff;
    border-color: #007bff;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
}

.link-item i {
    font-size: 22px;
    margin-left: 15px; /* Space between icon and text */
    width: 30px; /* To align text */
    text-align: center;
}

footer {
    margin-top: 30px;
    color: #6c757d;
    font-size: 14px;
}
