﻿html, body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}

.main-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

#status-list {
    margin-bottom: 30px;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
}

#status-messages {
    list-style: none;
    padding: 0;
    margin: 0;
}

.status-item {
    margin-bottom: 12px;
    padding: 10px;
    background: #f1f1f1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
}

.status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: flex-start;
}

.status-icon {
    font-size: 20px;
}


.status-started {
    background-color: #007bff;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    font-size: 14px;
}

.status-completed {
    background-color: green;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    font-size: 14px;
}

.status-failed {
    background-color: red;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
    font-size: 14px;
}

.status-label {
    font-weight: bold;
    text-align: right;
    margin-top: 4px;
}


#uploadForm {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

#uploadForm input[type="file"] {
    font-size: 16px;
}

#uploadForm button {
    padding: 10px 20px;
    background-color: #4CAF50;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
}

#uploadForm button:hover {
    background-color: #45a049;
}

.login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f0f2f5;
}

.login-card {
    background-color: #fff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.form-control {
    border-radius: 8px;
    padding: 10px;
    font-size: 16px;
}

.login-wrapper .btn-primary {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border-radius: 8px;
}

.alert {
    margin-bottom: 15px;
    font-size: 14px;
    padding: 10px;
}