/* /Pages/Home.razor.rz.scp.css */
/* Container for the entire input and button section */
.input-files-container[b-abbo461xtg] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border: 2px dashed #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    max-width: 400px;
    margin: 2rem auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hidden file input styling */
.input-files-complete-hidden[b-abbo461xtg] {
    position: relative;
    width: 100%;
    height: 50px;
    text-align: center;
    line-height: 50px;
    color: #555;
    font-size: 1rem;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-files-complete-hidden:hover[b-abbo461xtg] {
    background-color: #f0f0f0;
    border-color: #bbb;
}

/* Loading text styling */
.input-files-text[b-abbo461xtg] {
    pointer-events: none;
}

/* Buttons container */
.buttons-container[b-abbo461xtg] {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
}

/* Button styling */
button[b-abbo461xtg] {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover[b-abbo461xtg] {
    background-color: #0056b3;
}

button:active[b-abbo461xtg] {
    transform: scale(0.98);
}

/* Extracted list styling */
.extracted-list[b-abbo461xtg] {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.extracted-list ul[b-abbo461xtg] {
    list-style-type: disc;
    margin: 0;
    padding: 0;
    padding-left: 1.5rem;
}

.extracted-list li[b-abbo461xtg] {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    color: #333;
}
