@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

body {
    font-family: "Inter" !important;
}

.d-flex {
    display: flex;
}

.gap-1 {
    gap: 10px;
}

.gap-2 {
    gap: 15px;
}

.gap-3 {
    gap: 20px;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-end {
    justify-content: end !important;
}

.align-items-center {
    align-items: center !important;
}

.mb-3 {
    margin-bottom: 15px !important;
}

.me-1 {
    margin-right: 5px;
}

.me-3 {
    margin-right: 15px !important;
}

.text-truncate {
    white-space: nowrap !important;
}

.full {
    width: 100% !important;
}

.btn-icon {
    height: unset !important;
}

.text-black {
    color: black !important;
}

.text-danger {
    color: #ec1d25 !important;
}

.text-warning {
    background-color: #ffc107 !important;
    color: #000000 !important;
}

a.text-primary {
    color: #696cff !important;
}

.text-highlight {
    color: #0c63e4;
}

    .text-highlight:visited {
        color: #0c63e4 !important;
    }

.input-group-addon, .input-group-btn {
    width: unset !important;
}

a.i-remove {
    color: black !important;
}

.breadcrumb {
    margin-bottom: 0px !important;
}

    .breadcrumb > li > a {
        color: #0c63e4 !important;
    }

    .breadcrumb > li.active {
        color: black !important;
        font-size: 16px;
        font-weight: bold;
    }

.cursor-pointer{
    cursor: pointer;
}

.status-0 {
    background-color: #777 !important;
}
.status-1 {
    background-color: #f0ad4e;
}
.status-2 {
    background-color: #d9534f;
}
.status-3 {
    background-color: #5cb85c;
}
/*
    PDF Select
*/
.pdf-wrap {
    width: 90%;
    padding: 20px;
    background: #f7f8fa;
    text-align: center;
    border-radius: 12px;
    margin: 20px auto;
}

.pdf-dropzone {
    border: 2px dashed #d3d7df;
    border-radius: 12px;
    background-color: #FFFFFF;
    padding: 30px 20px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

    .pdf-dropzone:hover {
        background-color: #f0f2f7;
        border-color: #b0b7c3;
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }

.pdf-dropzone-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.pdf-dropzone-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.pdf-dropzone-subtitle {
    font-size: 14px;
    color: #666;
}

    .pdf-dropzone-subtitle a {
        color: #1677ff;
        text-decoration: none;
    }

        .pdf-dropzone-subtitle a:hover {
            text-decoration: underline;
        }

.pdf-selected-info {
    margin-top: 10px;
    font-size: 14px;
    color: #444;
}
