.section-content.transaction {
    justify-content: center;
}

/* dropzone */

.dropzone {
    width: min(650px, 95%);
    min-height: 300px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 40px;

    background: #fff;

    border: 2px dashed #d6dce5;
    border-radius: 20px;

    box-shadow:
        rgba(17, 24, 39, 0.04) 0px 1px 3px,
        rgba(17, 24, 39, 0.08) 0px 10px 25px;

    cursor: pointer;

    transition:
        border-color .25s ease,
        box-shadow .25s ease,
        background .25s ease,
        transform .25s ease;
}

.dropzone:hover {
    border-color: #0d6efd;
    background: #fafcff;
    transform: translateY(-2px);
}

.dropzone.state-dragover {
    border-color: #0d6efd;
    background: #eef5ff;

    transform: scale(1.01);

    box-shadow:
        rgba(13, 110, 253, 0.15) 0px 0px 0px 4px,
        rgba(13, 110, 253, 0.12) 0px 20px 40px;
}

/* icon */

.dropzone-icon {
    width: 72px;
    height: 72px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 36px;

    background: #eef5ff;
}

/* title */

.dropzone-title {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

/* text */

.dropzone-text {
    color: #6b7280;
    font-size: 15px;
}

/* separator */

.dropzone-separator {
    color: #9ca3af;
    font-size: 13px;
}

/* button */

.dropzone-button {
    border: none;
    border-radius: 10px;

    padding: 12px 20px;

    background: #0d6efd;
    color: white;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: background .2s ease;
}

.dropzone-button:hover {
    background: #0b5ed7;
}

/* hint */

.dropzone-hint {
    color: #9ca3af;
    font-size: 12px;
}

/* input */

#dropzone-file {
    display: none;
}


/*----------------------
table analysis
*/

.analysis-container {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
}

.analysis-container .table-responsive {
    width: 100%;
    overflow-x: auto;
}

.analysis-container table {
    width: 100% !important;
    border-collapse: collapse;
    margin-bottom: 30px;
    width: 100%;
    table-layout: auto;
    font-size: 12px;
}


.analysis-container th,
.analysis-container td {
    border: 1px solid #d0d7de;
    padding: 5px 8px;
    font-size: 12px;
    width: auto;
}

.analysis-container td[colspan] {
    width: auto;
}

.analysis-container thead tr {
    background: #1f4e79;
    color: white;
    font-weight: bold;
}

.analysis-container thead th {
    text-align: left;
    border-left: 1px solid #d0d7de;
}

.analysis-container tbody tr:nth-child(even) {
    background: #f5f8fb;
}

.analysis-container tbody tr:hover {
    background: #eef5ff;
}


.dropzone,
.analysis-container,
.analysis-container * {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 576px) {
    .dropzone {
        width: 100%;
        min-height: 240px;
        padding: 20px 14px;
        border-radius: 12px;
    }

    .dropzone-icon {
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .dropzone-title {
        font-size: 18px;
        text-align: center;
    }

    .dropzone-text,
    .dropzone-hint {
        text-align: center;
    }
}
