/* public/css/style.css */

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 90%;
    max-width: 500px;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

.upload-area {
    border: 2px dashed #cccccc;
    padding: 30px; /* Increase the padding for more space */
    margin-bottom: 20px; /* Add more space below the area */
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s ease;
}

.upload-area:hover {
    background-color: #f9f9f9;
    transform: scale(1.02); /* Slight lift on hover */
}

.upload-area input[type="file"] {
    display: none;
}

#progress-container {
    margin-top: 20px;
    text-align: center;
}

progress {
    width: 100%;
    height: 20px;
}

#progress-text {
    margin-top: 10px;
    font-size: 1em;
    color: #007BFF;
}

#file-list-container {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
}

#file-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.file-item {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    border-bottom: 1px solid #e0e0e0;
}

.file-item:last-child {
    border-bottom: none;
}

.file-item button {
    background-color: #ff5c5c;
    border: none;
    color: white;
    padding: 2px 6px;
    border-radius: 3px;
    cursor: pointer;
}

.remove-file {
    background-color: #ff4d4d;
    color: #ffffff;
    border: none;
    padding: 0 10px;
    cursor: pointer;
    font-size: 0.9em;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.remove-file:hover {
    background-color: #d93636;
}

.upload-button {
    font-size: 1.2em; /* Slightly larger font */
    padding: 15px 25px; /* Increase padding */
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.upload-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px); /* Slight lift on hover */
}

.upload-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

header h1 {
    font-family: 'Roboto Slab', serif;
    font-size: 3.5em; /* Increase size for impact */
    color: #333;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    text-align: center;
    margin-bottom: 20px; /* More space below the header */
}

#language-selector select {
    margin: 20px 0;
    font-size: 1em;
    padding: 8px 15px;
    border: 2px solid #007BFF;
    border-radius: 10px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

#language-selector select:hover {
    border-color: #0056b3;
    background-color: #f0f0f0;
}

#language-selector {
    margin-bottom: 25px;
}

footer {
    margin-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.8em; /* Reduced font size for a more subtle footer */
}

.success-message {
    padding: 20px;
    border-radius: 5px;
    margin-top: 20px;
    text-align: center;
}

.success-message a {
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
    word-break: break-all;
}

.success-message a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.success-message p {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

#link-input {
    border: 1px solid #ccc;
    padding: 8px;
    width: 80%;
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}

#copy-button {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1em;
    transition: background-color 0.3s ease;
}

#copy-button:hover {
    background-color: #0056b3;
}
a:visited, a:hover  {
        color: #333333;
}
