/* styles.css */

/* Styles moved from the HTML file for better organization */
/* Import Google Fonts for a more professional look */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

body {
    font-family: 'Roboto', sans-serif; /* Use Roboto font for better readability */
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh; /* Use min-height instead of height for better responsiveness */
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 400px;
}

h1 {
    color: #007bff;
}

.input-group {
    margin-top: 20px;
}

input {
    width: calc(100% - 110px); /* Adjust input width for better alignment */
    padding: 10px;
    margin-right: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px; /* Increase font size for better readability */
}

button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px; /* Increase font size for better readability */
}

.shortened-url {
    margin-top: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    color: #28a745;
    display: none; /* Hide by default */
    font-size: 14px; /* Decrease font size for better alignment */
}

.copy-button {
    margin-top: 10px;
    padding: 8px 15px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: none; /* Hide by default */
    font-size: 16px; /* Increase font size for better readability */
}

/* Center the "Copy Short URL" button */
.copy-button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* New style for error message */
.error-message {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px; /* Decrease font size for better alignment */
}

/* CSS styles for the footer */
footer {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}
