body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

h1 {
    color: #333;
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    font-weight: bold;
    color: #555;
}

input[type="text"],
input[type="url"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}
textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    height: auto;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
}


button:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}

#result-container {
    margin-top: 20px;
}

#short-url {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 80%;
    height: auto;
    margin-right: 10px;
}

#short-links {
    list-style: none; /* Прибирає маркери списку */
    padding: 0;
}

#short-links li {
    margin: 8px 0;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 8px;
    text-align: center;
    transition: background 0.3s;
}

#short-links li:hover {
    background: #e0e0e0;
}

#short-links a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
}

#short-links a:hover {
    text-decoration: underline;
}