/* ========== LOGIN PAGE STYLES ========== */
body {
    font-family: Arial, sans-serif;
    padding: 50px;
    background: #131117;
    color: #fff;
}


.navbar,
footer {
    /*background: linear-gradient(45deg, #ef4444, #f97316 70%);*/
    background-color: #33313D;
    border-radius: 8px;
    color: #fff;
}

footer {
    background-color: #000;
}

footer a {
    color: #fff;
}

.navbar a.btn.btn-outline-secondary {
    color: #fff;
    border: 1px solid #fff;
}

.logo {
    margin-bottom: 20px;
}

.login-box {
    max-width: 400px;
    margin: auto;
    padding: 20px;
    background: #312E3A;
    border-radius: 8px;
    /*box-shadow: 0 0 10px #ccc;*/
}

.flash-messages,
li.text-danger {
    color: red;
    padding-left: 0;
    list-style: none;
}


input[type="submit"],
button.btn.btn-primary,
a#download-btn {
    border-radius: 50px;
    background-color: rgb(240 90 40);
    color: #fff;
    border: none;
}

.login-box input[type="password"] {
    width: 90%;
    padding: 10px;
    margin-bottom: 15px;
}

.login-box input[type="submit"] {
    padding: 10px 20px;
}



/* ========== DASHBOARD PAGE STYLES ========== */
body {
    padding: 2rem;
    font-family: Arial, sans-serif;
}

.dropzone {
    border: 2px dashed #4d90fe;
    padding: 2rem;
    text-align: center;
    color: #4d90fe;
    cursor: pointer;
    margin-bottom: 1rem;
}

.dropzone.dragover {
    background-color: #f0f8ff;
}

.hidden {
    display: none;
}

#file-label {
    font-style: italic;
    color: #a1a1a1;
    color: rgb(240 90 40);
}

.dropzone {
    border: 2px dashed #a1a1a1;
    border-radius: 5px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    color: #666;
    background-color: #f9f9f9;
    transition: background 0.3s;
}

.dropzone.dragover {
    background-color: #e0f3ff;
}

footer p {
    margin: 0;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.6s ease;
}



form#process-existing-form {
    margin-top: 150px;
}



span.datepicker-cell {
    color: #000;
}





/*file input styles */
.drop-zone {
    border: 2px dashed #888;
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: background-color 0.3s, border-color 0.3s;
    position: relative;
}

.drop-zone:hover {
    background-color: #f0f0f0;
    border-color: #444;
}

.drop-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.file-icon {
    font-size: 50px;
    color: #4CAF50;
}

.drop-message {
    margin-top: 10px;
    font-size: 16px;
    color: #555;
}

.file-name {
    margin-top: 10px;
    font-size: 15px;
    color: rgb(240 90 40);
    font-weight: bold;
}