/* استفاده از فونت وزیر برای کل سایت */
body {
    font-family: 'Vazir', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

/* استایل لوگو */
header .logo {
    width: 550px;
    margin-bottom: 20px;
}

/* استایل عنوان */
h1 {
    font-size: 30px;
    color: #333;
    margin-bottom: 20px;
}

/* استایل فرم کوتاه‌کننده لینک */
.shorten-form {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    max-width: 600px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.shorten-form input[type="text"] {
    width: 80%;
    padding: 10px;
    text-align="right";
    margin: 15px 0;
    font-size: 18px;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
    transition: border-color 0.3s ease;
}

.shorten-form input[type="text"]:focus {
    border-color: #176BEF;
}

.shorten-form button {
    width: 80%;
    padding: 12px;
    font-size: 18px;
    color: white;
    background-color: #176BEF;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.shorten-form button:hover {
    background-color: #0d5c9f;
}

/* استایل نمایش نتیجه لینک کوتاه‌شده */
#result {
    margin-top: 20px;
}

.loading {
    font-size: 18px;
    color: #999;
}

#result p {
    font-size: 18px;
    color: #333;
}

#result a {
    color: #176BEF;
    text-decoration: none;
}

#result a:hover {
    text-decoration: underline;
}
