/* BUTTON */
.btn-1 {
    background-color: rgb(124, 181, 255);
    border-color: rgba(148, 194, 255, 0.829);
    color: white;
    padding: 3px 6px;
}

.btn-1:hover {
    background-color: rgba(148, 194, 255, 0.804);
    border-color: rgba(148, 194, 255, 0.804);
    color: white;
}

.btn-2 {
    background-color: #f39c12;
    border-color: #f39c12;
    color: white;
    padding: 3px 6px;
}

.btn-2:hover {
    background-color: #f39c12c8;
    border-color: #f39c12c8;
    color: white;
}

.btn-3 {
    background-color: #e74c3c;
    border-color: #e74c3c;
    color: white;
    padding: 3px 6px;
}

.btn-3:hover {
    background-color: #e74c3cc8;
    border-color: #e74c3cc8;
    color: white;
}

.btn-4 {
    background-color: #49bb79;
    border-color: #49bb79;
    color: white;
    padding: 3px 6px;
}

.btn-4:hover {
    background-color: #49bb78c8;
    border-color: #49bb78c8;
    color: white;
}


/* SCROLLBAR */
html,
body {
    overflow-x: hidden;
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #00065c;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #00065c;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #00065c transparent;
}


/* TABLE-UMUM */
#table,
#table th,
#table td,
#table input,
#table select {
    font-size: 0.8rem;
    font-weight: 500;
}


/* DATATABLE */
.table.dataTable {
    font-size: 0.8rem;
    margin-bottom: 0;
    width: 100% !important;
}

.table.dataTable thead th {
    color: #495057;
    font-weight: 600;
    padding: 0.5rem 0.75rem;
}

.table.dataTable tbody td {
    padding: 0.5rem 0.75rem;
    vertical-align: middle;
    border-top: 1px solid #dee2e6;
}

.table.dataTable tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.dataTables_wrapper .dataTables_paginate {
    margin-top: 30px;
    text-align: right;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 1px;
    color: #f39d12cd !important;
    font-size: 10px;
    transition: all 0.3s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background-color: #F39C12 !important;
    color: #fff !important;
}

div.dataTables_wrapper div.dataTables_paginate ul.pagination {
    margin-top: 10px;
}

.page-link {
    color: #f39d12d9 !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.page-link:hover {
    color: #ffffff !important;
    background-color: #f39d12be !important;
    border-color: transparent !important;
}

.page-item.active .page-link {
    color: #ffffff !important;
    background-color: #f39d12 !important;
    border-color: transparent !important;
}


/* INPUT-SELECT */
.form-control:focus {
    border-color: rgba(148, 194, 255, 0.804) !important;
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.25) !important;
    outline: none !important;
}

.form-check-input:focus {
    border-color: rgba(148, 194, 255, 0.804) !important;
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.25) !important;
    outline: none !important;
}

.form-select:focus {
    border-color: rgba(148, 194, 255, 0.804) !important;
    box-shadow: 0 4px 12px rgba(30, 132, 73, 0.25) !important;
    outline: none !important;
}

.select2-container {
    width: 100% !important;
}


/* FULLCALENDAR */
.fc .fc-col-header-cell-cushion {
    text-decoration: none;
    color: #00065c;
}

.fc .fc-daygrid-day-number {
    text-decoration: none;
    color: #00065c;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: #f39d1247;
    color: #fff;
}