body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

header {
    background-color: #007bff;
    color: white;
    padding: 20px 0;
    position: absolute;
    top: 0;
    width: 100%;
}

h1 {
    margin: 0;
}

.center-window {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 60px; /* Adjust this value to move the window down */
}

.button-container {
    width: 100%;
    max-width: 400px; /* Adjust this value as needed */
    margin: 0 auto;
    margin-top: 10px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-group label {
    width: 100px; /* Adjust this value as needed */
    text-align: right;
    margin-right: 10px;
}

.form-group input {
    flex: 1;
}

.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.footer {
    position: fixed;
    right: 10px;
    bottom: 10px;
    color: rgb(211, 211, 211);
    font-size: small;
}

.footer a {
    color: rgb(132, 132, 132);
    text-decoration: none;
    margin: 0 5px;
}

.footer a:hover {
    text-decoration: underline;
}

.container {
    text-align: center;
    padding: 50px;
}
.progress-bar-container {
    width: 100%;
    background-color: #f3f3f3;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
    display: none;
}
.progress-bar {
    height: 30px;
    width: 0;
    background-color: #4caf50;
    text-align: center;
    color: white;
    line-height: 30px;
}
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.row label {
    flex: 1;
    text-align: left;
}

.row input {
    margin-left: 10px;
}

.float-input {
    width: 10px; /* Adjust width as needed */
    margin-left: 5px;
    margin-right: 5px;
    padding: 5px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}


/* General styling for the list */
ul {
    list-style-type: disc; /* Standard bullet points */
    padding-left: 20px; /* Space to indent bullets */
}

/* Styling for list items */
li {
    margin-bottom: 10px; /* Spacing between items */
    font-size: 16px;
    color: black; /* Default text color */
}

/* Styling for hyperlinks */
a {
    color: blue;
    text-decoration: underline;
    font-weight: bold;
}

/* Optional: Hover effect for links */
a:hover {
    color: darkblue;
    text-decoration: none;
}

.identifier-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.identifier-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.identifier-item:hover {
    background-color: #f1f1f1;
}

.delete-form {
    margin: 0;
}

.btn-delete {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-delete:hover {
    background-color: #c82333;
}

.file-list {
    list-style-type: none;
    padding-left: 0;
    margin-top: 20px;
    text-align: left;
}

.file-list li {
    margin-bottom: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

.file-list li:hover {
    background-color: #e2e6ea;
}

.file-list a {
    color: #007bff;
    font-weight: 500;
    text-decoration: none;
    word-break: break-word;
}

.file-list a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.button-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}
