.file-upload-container {
    margin: 20px 0;
    padding: 20px;
    border: 2px dashed #ccc;
    border-radius: 8px;
    text-align: center;
    background-color: #f9f9f9;
}

.file-upload-input {
    display: none;
}

.file-upload-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0047AB;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.file-name {
    margin-top: 10px;
    font-style: italic;
}

.restore-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.submit-btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #0047AB;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.submit-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.back-link {
    margin-top: 20px;
    color: #0047AB;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: underline;
}

.error-message {
    color: #FF0000;
    margin-top: 10px;
}

/* Help button styling */
#help-button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s;
    z-index: 1000;
}

#help-button:hover {
    background-color: var(--secondary-2);
}
