* {
    font-size: 14px;
}

body {
    overflow-x: hidden;
}

.row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .25) !important;
    /* Decreased multiplier */
    padding-left: calc(var(--bs-gutter-x) * .25) !important;
    /* Decreased multiplier */
}

.browser-setting {
    margin-top: 20px;
    text-align: right;
}

.container {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
}

.form-group select,
.form-group input[type="text"] {
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
}

span.required {
    color: #e02612;
    font-size: 14pt;
    font-weight: 700;
    line-height: 1;
}

.table-section-spacing {
    padding-top: 1.5em !important;
    padding-bottom: 0 !important;
    width: 350px;
}

.fixed-table-toolbar {
    margin-top: -10px;
}

.card.fullscreen {
    position: fixed;
    top: 62px;
    /* Height of the navbar */
    left: 0;
    width: 100vw;
    height: calc(100vh - 62px);
    z-index: 9999;
    background-color: white;
    font-size: larger;
    transition: all 0.3s ease-in-out;
}

.card.fullscreen p {
    font-size: large;
}

.card.fullscreen h5 {
    font-size: large;
}

.fullscreen-icon {
    cursor: pointer;
}

.charts {
    width: 350px !important;
    height: 380px !important;
    margin: auto;
}

.card.fullscreen canvas {
    width: 600px !important;
    height: 650px !important;
    margin: auto;
}


/* copy to clipboard */

.copy-icon {
    cursor: pointer;
    font-size: 20px;
}

.table td {
    word-wrap: break-word;
}

.form-group label,
.form-group input {
    vertical-align: top;
}


/* for multiple select dropdown button style*/


/* Style the dropdown arrow */

.mult-select-tag .btn-container {
    color: blue !important;
    padding: .5rem;
    display: flex;
    border-left: 1px solid var(--border-color)
}


/* for default chart text on all dashboards */

.default-chart-text {
    text-align: center;
    color: gray;
}


/* for bootsrap table filter button color change */

.bootstrap-table .fixed-table-container .table thead th .both {
    color: black;
}

.bootstrap-table .fixed-table-container .table thead th .desc {
    color: black;
}

.bootstrap-table .fixed-table-container .table thead th .asc {
    color: black;
}


/* for tooltip for disabled button */


/* for access denied message */

.access-denied {
    text-align: center;
    padding: 20px;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 250px;
}

.access-denied h2 {
    color: #721c24;
    margin-bottom: 15px;
}

.access-denied p {
    font-size: 15px;
    color: red;
}

#copyCheckmark {
    opacity: 0;
    margin-left: 10px;
    color: green;
    transition: opacity 0.3s ease-in-out;
}

#copyCheckmark.show {
    opacity: 1;
}


/* for mobile phones - latest iphone screens */

@media only screen and (min-width: 375px) and (max-width: 512px) {
    .fixed-table-toolbar {
        margin-top: 10px;
    }
}

@media (max-width: 768px) and (min-width: 512px) {
    .fixed-table-toolbar {
        margin-top: 10px;
    }
}