*:focus {
    outline: none !important;
}
body {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
}

img {
    max-width: 100%!important;
}

.form-control:focus {
    box-shadow: none;
    border-color: inherit;
    border-color: #a1a1a1!important;
}

.modal-title {
    font-weight: bold;
}
.modal-body {
    padding: 20px;
}

.issue-checkbox {
    transform: scale(1.2);
    cursor: pointer;
}

.form-check-label {
    margin-left: 5px;
    font-weight: bold;
}

.form-check-label.text-danger {
    color: #dc3545; /* Red for issues */
}

.form-check-label.text-success {
    color: #28a745; /* Green for no issues */
}

.sticky-button {
    position: fixed;
    bottom: 20px;
    background-color: #6917d4;
    color: #ffffff;
    right: 20px;
    z-index: 1000;
}
.sticky-button .btn {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #6917d4;
    color: #ffffff;
    border-radius: 5px;
}

.room-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.room-modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
}

.room-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 15px;
}

.room-close:hover,
.room-close:focus {
    color: black;
    cursor: pointer;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    background-color: #f8f9fa; /* Light background */
    color: #000000;
    border: 2px solid #ddd;
    border-radius: 17px;
    padding: 8px 12px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.tag-text {
    font-weight: bold;
    padding-right: 20px; /* Ensure text has space */
}

.remove-tag {
    position: absolute;
    top: -5px;
    right: -2px;
    background-color: white;
    color: black;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Modal button container */
#modalLinksContainer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

/* Common button styles */
.modal-btn {
    display: block;
    text-align: center;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

/* Green button styling */
.green-btn {
    background-color: #28a745; /* Green color */
    color: white;
    border: none;
}

.green-btn:hover {
    background-color: #000000;
    color: #218838; /* Darker green on hover */
    transform: translateY(-2px); /* Slight lift effect */
}

/* Purple button styling */
.purple-btn {
    background-color: #6f42c1; /* Digital Purple color */
    color: white;
    border: none;
}

.purple-btn:hover, .purple-btn.active {
    background-color: #000000;
    color: #6f42c1; /* Darker purple on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
.yellow-btn {
    background-color: hsl(51, 100%, 53%); /* Digital Purple color */
    color: white;
    border: none;
}

.yellow-btn:hover {
    background-color: #000000;
    color:rgb(237, 253, 13); /* Darker purple on hover */
    transform: translateY(-2px); /* Slight lift effect */
}
/* Optional: Add some box shadow for a more elevated look */
.modal-btn:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* Add this to your CSS file or inside a <style> block */
.highlight-row {
    background: linear-gradient(to left, rgba(0, 217, 255, 0.8), rgba(188, 189, 236, 0.2));
    animation: fadeEffect 2s ease-in-out infinite;
    color: #000; /* Adjust text color for contrast */
}

#fullScreenImageContainer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8); /* Dark overlay */
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#fullScreenImage {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
}

.pmodal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.pmodal-content {
    background-color: white;
    padding: 20px;
    width: 400px;
    border-radius: 5px;
    position: relative;
}

.pclose-btn {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: 20px;
    cursor: pointer;
}

.pform-group {
    margin-bottom: 15px;
}

.pform-control {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.pbtn {
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.pbtn-primary {
    background-color: #007bff;
    color: white;
}

.pbtn-primary:hover {
    background-color: #0056b3;
}







/* Keyframes for the fading effect */
@keyframes fadeEffect {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 1;
    }
}

.btn-indigo{
    background: #000b6b;
    border:#815ef6;
    color: #ffffff;
}
a {
    text-decoration: none !important;
}

.text-gray-600 {
    font-weight: 500;
}

.my-review i {
    color: #fbc715;
    font-size: 14px;
}

.v-center {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    transform: translateY(-50%);
    bottom: initial;
    z-index: 4;
}

.ttn {
    text-transform: none!important;
}

.bg-login-image,
.bg-password-image {
    background-image: url(../img/bg-login-image.jpg);
}

.badge {padding: 6px 10px!important;border-radius: 10px!important;}

.text-red {
    color: red!important;
}

.card-header h6 {
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
}

.card-body iframe {
    width: 300px;
    height: 200px;
}

.card-body iframe.w_500 {
    width: 500px;
    height: 350px;
}


.test_status {
    background-color: rgb(238, 181, 181);
    color: black;
}

.test_status2 {
    background-color: rgb(24, 216, 104);
    color: white;
}


.card-body label {
    font-weight: 700;
    font-size: 15px;
}

.d_n {display: none!important;}
.w_50 {width: 50px!important;}
.w_100 {width: 100px!important;}
.w_150 {width: 150px!important;}
.w_200 {width: 200px!important;}
.w_300 {width: 300px!important;}
.w_100_p {width: 100%!important;}

.h_55 {height: 55px!important;}
.h_70 {height: 70px!important;}
.h_80 {height: 80px!important;}
.h_100 {height: 100px!important;}
.h_150 {height: 150px!important;}
.h_200 {height: 200px!important;}
.h_400 {height: 400px!important;}

.fz-14 {font-size: 14px!important;}
.fz-40 {font-size: 40px!important;}

.pt_28 {padding-top: 28px!important;}

.bg_f3f3f3 {background: #f3f3f3!important;}

.existing-video iframe {
    width: 100%;
    height: 160px;
}

.heading-in-tab {
    font-size: 16px;
    font-weight: 700;
    color: #4e73df;
    border-bottom: 1px solid #c2c2c2;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

form.user .form-control-user,
form.user .btn-user {
    border-radius: .35rem;
}

.sidebar .nav-item .nav-link {
    padding-top: 0.6rem!important;
    padding-bottom: 0.6rem!important;
}
.sidebar .nav-item .nav-link i {
    width: 18px!important;
}

.dashboard-page .h4 {
    font-size: 16px!important;
}

.dashboard-page .h5 {
    font-size: 30px!important;
}

.t-left .nav-pills .nav-link {
    background-color: #e6e6e6;
    margin-bottom: 5px;
}

.nav-pills .nav-link.active {
    color: #fff!important;
    background-color: #4e73df!important;
}

.iframe-container-300 iframe {
    width: 300px;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item.active {
    background: #eaecf4;
}

.sidebar .nav-item.active .nav-link {
    font-weight: 500!important;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item {
    white-space: normal!important;
}

body,
.table {
    color: #6f6f6f!important;
}

.table-bordered td, .table-bordered th {
    font-weight: 500!important;
}

.invoice-area img {height: 90px;}
.invoice-area .company-info {font-size: 16px;}
.invoice-head {margin-bottom: 30px;border-bottom: 1px solid #efebeb;padding-bottom: 20px;}
.invoice-head .iv-left span {color: #444;}
.invoice-head span {font-size: 21px;font-weight: 700;color: #777;}
.invoice-address h3 {font-size: 24px;text-transform: uppercase;font-weight: 600;color: #333;margin-bottom: 15px;}
.invoice-address h5 {font-size: 17px;margin-bottom: 10px;}
.invoice-address p {font-size: 13px;color: #555;margin-bottom: 3px;}
.invoice-date li {font-size: 15px;color: #555;font-weight: 700;margin-bottom: 5px;}
.invoice-table .table-bordered td,
.invoice-table .table-bordered th {border: 1px solid rgba(120, 130, 140, 0.13) !important;border-left: none!important;border-right: none!important;font-size: 13px!important;}
.invoice-table tr td {color: #666;}
.invoice-table tfoot tr td {text-transform: uppercase;font-weight: 600;color: #444;}
.invoice-buttons a {display: inline-block;font-size: 15px;color: #fff;background: #815ef6;padding: 12px 19px;border-radius: 3px;text-transform: capitalize;font-family: 'Jost', sans-serif;font-weight: 600;letter-spacing: 0.03em;margin-left: 6px;}
.invoice-buttons a:hover {background: #574494;}

@media print {
    .invoice-heading,
    .sidebar,
    .card-header,
    .print-invoice-button {display:none!important;}
}

.sidebar-dark .nav-item .nav-link i {
    color: rgba(255,255,255,.8)!important;
}

.sidebar .nav-item .nav-link span {
    font-size: 16px!important;
    font-weight: 500!important;
}

.sidebar .nav-item .collapse .collapse-inner,
.sidebar .nav-item .collapsing .collapse-inner {
    font-size: 16px!important;
}

.form-control {
    font-size: 16px!important;
    font-weight: 500!important;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-item {
    font-weight: 500!important;
    font-size: 16px!important;
}

.text-gray-800 {
    font-size: 22px!important;
    font-weight: 600!important;
}

.btn-success {
    font-size: 14px!important;
    font-weight: 600!important;
}

.select2-container {
    width: 100%;
}
.select2-container--default .select2-selection--single {
    border-color: #d1d3e2;
}
.select2-container .select2-selection--single {
    height: 34px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 34px;
}


.sidebar-brand-text {
    text-align: left;
    width: 100%;
}

.sidebar-brand-text .left {
    display: inline-block;
}

.sidebar-brand-text .left img {
    height: 40px;
}

.sidebar-brand-text .right {
    display: inline-block;
    vertical-align: middle;
}

.modal_hotel_detail label {
    font-size: 20px;
}

.bdb {
    border-bottom: 1px solid #a3a3a3;
    padding-bottom: 5px;
    margin-bottom: 5px;
}

.bdt {
    border-top: 1px solid #a3a3a3;
    padding-top: 5px;
    margin-top: 5px;
}


.cke_dialog_ui_hbox_last,
a.cke_dialog_ui_button.cke_dialog_image_browse {
    display: none!important;
}

form.user .btn-user {
    font-size: 16px;
}
.custom-textarea-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* Adjust as needed */
}

.custom-textarea {
    width: 100%;
    min-height: 150px; /* Initial height */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    resize: both; /* Allows manual resizing */
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.custom-textarea:focus {
    border-color: #007bff; /* Highlight color */
}

.badge-counter {
    margin-top: 15px;
    background-color: red;
    color: white;
    padding: 2px 3px !important;
    border-radius: 80% !important;
    font-size: 1rem;
    float: right;
    /* font-size: 12px; */
    position: absolute;
    top: -21px;
    right: -50px;
    z-index: 99999;
    
}
