/* styles.css */

/* General styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Navbar styling */
.navbar {
    background-color: #333333;  /* Darker gray background */
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;  /* Center content horizontally */
    position: relative;  /* Allows positioning of the logo */
}

.navbar img {
    height: 50px;
    position: absolute;
    left: 15px;  /* Keep the logo aligned to the left */
}

.navbar h1 {
    font-size: 24px;
    color: #ffffff;
    margin: 0;
    text-align: center;  /* Center text */
}

/* Container styling */
.container {
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Typography and links */
h1 {
    color: #343a40;
    text-align: center;
    margin-bottom: 20px;
}

p {
    color: #495057;
    font-size: 16px;
}

a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Button styling */
button {
    display: block;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    font-size: 16px;
    color: white;
    background-color: #A9A9A9;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #696969;
}

/* Warning message styling */
.warning {
    color: #d9534f;
    font-weight: bold;
}

/* Drag-and-drop upload zone styling */
#drop-zone {
    border: 2px dashed #ccc;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 10px;
    background-color: #fafafa;
    transition: background-color 0.3s ease;
    border-radius: 8px;
    color: #6c757d;
    font-size: 16px;
}

#drop-zone.dragover {
    background-color: #f0f0f0;
    border-color: #888;
}

#drop-zone input[type="file"] {
    display: none;
}
