.background-guest{
    background-image: url('../img/background.jpg');
    background-position: center;
}

h1{
    font-size:2rem !important;
}

.btn-outline-primary
.btn-outline-danger,
.btn-outline-primary:hover,
.btn-outline-danger:hover{
    background-color: #fff !important;
}


.input-group label{
    padding-top:7px !important;
}

.btn-xs {
    padding: 0.07rem 0.45rem; /* Smaller padding */
    font-size: 0.7rem; /* Smaller font size */
    border-radius: 0.2rem; /* Adjust border radius */
}

.timeslots .form-check{
    padding-left: 0 !important;
}

td .btn{
    margin-bottom: 0 !important;
}

td.wrap {
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words to fit */
    word-break: break-word; /* Ensure long words break properly */
}

/* Steps CSS */

:root {
    --prm-color: #0381ff;
    --prm-gray: #b1b1b1;
}
/*  unnecessary */
.steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

.step-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: #eaecee;
    border: 1px solid #dde0e4;
    transition: .4s;
}

.steps .completed{
    background-color: #d6eed6;
    border:1px solid #339536;
    color: #339536;
}

.step-button[aria-expanded="true"] {
    background-color: #c2e1fe;
    border:1px solid #277fea;
    color: #277fea;
}

.done {
    background-color: var(--prm-color);
    color: #fff;
}

.step-item {
    z-index: 10;
    text-align: center;
}

#progress {
    -webkit-appearance:none;
    position: absolute;
    width: 95%;
    z-index: 5;
    height: 1px;
    margin-left: 18px;
    margin-bottom: 18px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
    background-color: var(--prm-color);
    transition: .5s ease;
}

#progress::-webkit-progress-bar {
    background-color: var(--prm-gray);

}

.hover-effect:hover {
    background-color: #ccc; /* Light gray */
    transition: all 0.3s ease; /* Smooth transition */
}

.hover-effect .btn,
.hover-effect legend{
    margin-bottom: 0 !important;
}


.text-muted{
    color:#959ea9 !important;
}

.form-check {
    padding-left: 0 !important
}

/* upoad files */
#drop-area {
    width: 100%;
    padding: 40px;
    border: 2px dashed dodgerblue;
    color: dodgerblue;
    text-align: center;
    margin-bottom: 10px;
    cursor: pointer;
}
.file-item {
    padding: 5px;
    background: #f1f1f1;
    margin: 5px 0;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
}
.remove-btn {
    cursor: pointer;
    color: red;
}

.file-list {
    margin-top: 10px;
}
.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 5px;
}
.progress {
    height: 5px;
}

.file-man-box {
    padding: 20px;
    border: 1px solid #e3eaef;
    border-radius: 5px;
    position: relative;
    margin-bottom: 20px
}

.file-man-box .file-close {
    color: #f1556c;
    position: absolute;
    line-height: 24px;
    font-size: 24px;
    right: 10px;
    top: 10px;
    visibility: hidden
}

.file-man-box .file-img-box {
    line-height: 80px;
    text-align: center
}

.file-man-box .file-img-box img {
    height: 64px
}

.file-man-box .file-download {
    font-size: 20px;
    color: #98a6ad;
    position: absolute;
    right: 10px
}

.file-man-box .file-download:hover {
    color: #313a46
}

.file-man-box .file-man-title {
    padding-right: 25px
}

.file-man-box:hover {
    -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, .06), 0 1px 0 0 rgba(0, 0, 0, .02)
}

.file-man-box:hover .file-close {
    visibility: visible
}
.text-overflow {
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
    width: 100%;
    overflow: hidden;
}

.rotate-text-90 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
}


.input-container {
    margin: 0 auto;
    height:40px;
    display: flex;
    align-items: center;
    border: 1px solid #d4d4d4 !important;
    border-radius: 5px;
    overflow: hidden;
    max-width: 150px;
}

.currency-symbol {
    width: 30px;
    text-align: center;
    background: #e9ecef;
    padding: 8px 0;
    color: #6c757d;
    font-size: 16px;
}

.signature-pad{
    border: 1px solid #ccc;
}


.page-item .page-link, .page-item span {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    border: 1px solid #999;
    padding: 0;
    margin-right: 10px;
    border-radius: 3px !important;
    width: 80px;
    height: 36px;
    font-size: 0.875rem;
}

.page-item.disabled .page-link{
    color: #ccc !important;
    border: 1px solid #ccc;
}
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent */
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    flex-direction: column;
    color: white;
    font-size: 18px;
    z-index: 9999;
    display: none; /* Initially hidden */
}

.loadingContent {
    height:100%;
    padding:100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center; /* Ensure text and spinner are aligned */
    justify-content: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px; /* Space between spinner and text */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

tr:has(th) {
    background-color: #dde0e4;
    font-weight: bold;
}
tr:has(th) th{
    color: #000 !important;
}

.badge-dot {
    position: relative;
    top: 0;
    right: 0;
    width: auto;
    padding: 0 5px;
    height: 20px;
    background-color: red;
    border-radius: 35%;
    border: 2px solid white; /* Optional border for cleaner look */
    color: #fff;
    font-size:10px;
}

.modal-body p {
    word-wrap: break-word !important;
}

.bg-gradient-omnius {
    background-image: linear-gradient(205deg, #fab800 0%, #fccf00 100%);
}

.text-black{
    color: #000;
}

.text-primary{
    color: #339536 !important;
}

.text-gradient.text-primary {
    background-image: linear-gradient(195deg, #339536, #339536);
}

.page-title{
    font-weight: bold;
}

.page-title-wrapper{
    padding:10px;
}

.btn-omnius-primary{
    background-color: #000;
    color:#fff;
}
.btn-omnius-primary:hover{
    background-color: #ddd;
}

.badge-success{
    background-color: #bde2be;
    color:#339536;
    padding:2px 5px;
    border-radius: 4px;
}

.badge-info{
    background-color: #9fccfc;
    color:#277fea;
    padding:2px 5px;
    border-radius: 4px;
}

.badge-warning{
    background-color: #ffd9a3;
    color:#fd9614;
    padding:2px 5px;
    border-radius: 4px;
}

.border-radius-5{
    border-radius: 5px !important;
}



.nav-link.active{
    color: #fff !important;
}

.nav-tabs .nav-link{
    color:#000 !important;
    border-top:1px solid #fab800;
    border-left:1px solid #fab800;
    border-right:1px solid #fab800;
}

.nav-tabs .nav-link:hover{
    background-color: #f1f2f3;
}

.nav-tabs .nav-link.active{
    color:#fff !important;
    background-color: #10172a;
}

.tab-content{
    border-radius: 5px;
    background-color: #fff !important;
}

.tab-content td,
.tab-content th{
    padding:10px;
}

.is-invalid{
    border: 1px solid red !important;
}


.alert-light-danger{
    background-color: #ff9292 !important;
}


#project-preview-header button{
    padding:5px 7px !important;
}


.day{
    width: 14.28%;
}

.bg-success-light{
    background-color: #92ffbe !important;
}


.tab-pane{
    padding:20px;
}

.accordion-item .active{
    border-color: cornflowerblue !important;
}

.notification-dot {
    position: absolute;
    margin-left:9px;
    top: 10px;
    height: 8px;
    width: 8px;
    background-color: red;
    border-radius: 50%;
    content: '';
}

.nav-item{
    position: relative;
}


#file-browser-tabs {
    z-index: 999999999;
    font-size: 16px;
    color: #333;
    padding: 5px;
    font-weight: 400;
    justify-content: space-between;
    position: fixed;
    bottom: 0px;
    width: 80%;
    right: 0;
}

/* zoom for invoice preview */
.img-zoom-container {
    position: relative;
}

#zoomLens {
    position: absolute;
    border: 2px solid #000;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-repeat: no-repeat;
    background-size: 2000px 1400px;
    pointer-events: none;
    display: none;
    z-index: 10;
}


/* ocr carrousel */
#carousel-container {
    position: relative;
    height: 1000px;
    overflow: auto;
    margin: 20px auto;
    border: 1px solid #ccc;
}

.carousel-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.carousel-image.active {
    display: block;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
}

#prevBtn {
    left: 10px;
}

#nextBtn {
    right: 10px;
}
/* end ocr carrousel */
