.enhanced-url-shortener-form-container form {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.enhanced-url-shortener-form-container input[type="url"] {
    width: 80%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.enhanced-url-shortener-form-container button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.enhanced-url-shortener-form-container button:hover {
    background-color: #0056b3;
}