html {
    font-size: 14px;
    background-color: #333333;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-color: #333333;
}

.card-body-padding {
    padding: 25px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.pagination {
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background-color: #0F6CB5;
}

.bg-primary {
    
}

.badge-custom {
    /*background-color: #0F6CB5 !important;*/
    border: solid;
    border-width: 1px;
    background-color: transparent !important;
    color: #000f;
}

.rounded-corner {
    border-radius: 0.375rem;
}


.table .col-number {
    width: 100px;
}

.table .col-admin {
    width: 125px;
}

.navbar-bottom-link {
    color: #428bca;
    padding: 5px;
}

.drop-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    width: 100%;
    padding: 30px;
    border: 2px dashed #adb5bd;
    border-radius: 10px;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: all 0.2s ease;
}

    .drop-zone:hover {
        border-color: #6c757d;
        background-color: #f1f3f5;
    }

    .drop-zone.drag-over {
        border-color: #0d6efd;
        background-color: #e7f1ff;
        transform: scale(1.01);
    }

    .drop-zone.has-file {
        border-color: #198754;
        background-color: #f0fff4;
    }

.drop-zone-icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.drop-zone-title {
    font-size: 18px;
    font-weight: 600;
}

.drop-zone-text {
    margin-top: 5px;
    color: #6c757d;
}

.drop-zone-file-name {
    margin-top: 15px;
    padding: 8px 15px;
    color: #198754;
    background-color: #d1e7dd;
    border-radius: 6px;
    font-weight: 600;
}