﻿/*
    qui dentro si possono copiare delle classi di bootstrap che si vogliono overridare
    e sia bootstrap che bootstrapvue le adotteranno.
    le classi sono nel file bootstrap.min.css (o se la si ha nella versione non minificata)
    es:
        se si vuole che il btn abbia un bordo rosso, ma conservi tutte le altre properties,
        basterà aggiungere qui sotto:
        .btn {
            border: 2px solid red;
        }
    es:
        se si vuole far diventare verde i tastini delle pagination e conservare le altre
        properties, basta aggiungere qui sotto:
        .page-item.active .page-link {
            color: #000;
            background-color: #b6ff00;
            border-color: #00ff21
        }
*/

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.modal-header,
.bg-primary-subtle,
.btn.btn-primary {
    background-color: #131A33;
}

.modal-dialog {
    max-width: 50rem;
}

.modal-header,
.close {
    color: #fff;
}

.close {
    opacity: 1;
}

.close:hover,
.btn.btn-primary:hover {
    background-color: #A5D4EE;
}

.pagination {
    color: #212529;
    width: 20vw;
}

.pagination .page-item .page-link {
    color: inherit;
}

.page-item.active .page-link {
    background-color: #131A33;
    color: #fff;
}

.page-item .page-link:hover {
    background-color: #A5D4EE;
}

/* #region configurations table style */

/* table container max height */
.b-table-sticky-header.table-responsive {
    max-height: initial;
}

/* thead background-color */
.table.b-table>thead>tr>.table-b-table-default {
    background-color: #c5dcf7;
}

.table.b-table.table-striped>tbody>tr:nth-of-type(odd)>.table-b-table-default {
    background-image: none;
}

.table.b-table>tbody>tr>.table-b-table-default {
    background-color: transparent;
}

/* white rows */
.table-striped tbody tr:nth-of-type(odd) {
    background-color: white;
}

/* lightblue rows */
.table-striped tbody tr:nth-of-type(even) {
    background-color: #e5f1ff;
}

/* hover */
.table-striped tbody tr:nth-of-type(odd):hover,
.table-striped tbody tr:nth-of-type(even):hover {
    background-color: #ECECEC;
}

.table.b-table.table-hover>tbody>tr:hover>.table-b-table-default {
    background-image: none;
}

/* table inner borders */
.table-borderless tbody+tbody,
.table-borderless td,
.table-borderless th,
.table-borderless thead th {
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}

/* verical alignment */
.table td,
.table th {
    vertical-align: middle;
}

/* cell padding */
.table-sm td,
.table-sm th {
    padding: .5rem;
}

/* sticky header */
.position-relative {
    position: sticky !important;
}

/* #endregion configurations table style */

/* #region New job tabs style */

.nav-tabs {
    border-bottom: none;
    padding: 0 1vw;
}

.nav-tabs .nav-link {
    border: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 0;
    color: black;
    margin-right: 0.75vw;
    background-color: #9e9e9e;
}

.tab-content>.tab-pane {
    background-color: #d9d9d9;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    background-color: #d9d9d9;
}

/* #endregion New job tabs style */