.placement-type{
	font-weight: 500;
	font-size: 12px;
	padding: 4px 7px;
}

/* Make selected items smaller */
/* #serviceTypeSelect + .select2-container .select2-selection__choice {
    padding: 2px 6px !important;
    font-size: 12px !important;
    height: 22px !important;
    line-height: 20px !important;
} */

/* Reduce overall select height */
/* #serviceTypeSelect + .select2-container .select2-selection--multiple {
    min-height: 30px !important;
    height: auto !important;
    padding: 2px !important;
} */

/* Ensure items are stacked vertically */
/* #serviceTypeSelect + .select2-container .select2-selection__rendered {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2px;
} */

.custom-tabs {
    border-bottom: 1px solid #ddd;
}

.custom-tabs .nav-item {
    margin-right: 5px;
}

.custom-tabs .nav-link {
    font-size: 14px;
    font-weight: 500;
    padding: 12px 20px;
    color: #555;
    border-radius: 8px 8px 8px 8px;
    transition: all 0.3s ease-in-out;
}

.custom-tabs .nav-link:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.custom-tabs .nav-link.active {
    background-color: #091b66;
    color: #fff;
}

.custom-anchor-tag {
    text-decoration: none; 
    color: inherit;
}

.custom-view {
    width:150px;
}

.custom-accomodation-note {
    color: #f36166; 
    font-weight: bold;
    margin-top: 10px;
}

/* Ensure all icons have a fixed width */
.table .btn-align {
    width: 40px; /* Adjust the width as needed */
    text-align: center;
    display: inline-block;
}

/* Align table columns properly */
.table-container-specific .table td {
    vertical-align: middle; /* Ensure content is vertically aligned */
    text-align: center; /* Center-align text and icons */
}

/* Optional: Add spacing between icons */
.table .btn-align + .btn-align {
    margin-left: 2px; /* Add spacing between icons */
}

.visibile-hidden {
    visibility: hidden;
}

.explanatoryText {
    background-color: #ffffff; /* Clean white background for better readability */
    margin-bottom: 25px; /* Add spacing below the section */
    font-size: 15px; /* Standard font size */
    color: #4a4a4a; /* Neutral dark gray text color */
    border: 1px solid #ebebeb;
    border-top: 0px;
    box-shadow: 0px 7px 21px 1px rgba(9, 27, 102, 0.10);
    padding-top: 65px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 30px;
    justify-content: space-between;
    flex-wrap: nowrap;
    align-items: center;
}

.explanatoryText p {
    margin-bottom: 20px; /* Increase spacing between paragraphs */
    text-align: justify; /* Justify text for a clean block appearance */
}

.explanatoryText p:last-child {
    margin-bottom: 0; /* Remove margin for the last paragraph */
}

.explanatoryText p:first-child {
    margin-top: 30px; /* Remove margin for the last paragraph */
}

.explanatoryText h2 {
    font-size: 15px; /* Add a heading style for emphasis */
    font-weight: bold;
    color: #091b66; /* Use a primary color for headings */
    margin-bottom: 15px;
}

.explanatoryText ul {
    margin-top: 15px;
    padding-left: 20px; /* Indent list items */
}

.explanatoryText ul li {
    margin-bottom: 10px;
    font-size: 15px;
    color: #555; /* Slightly lighter text for list items */
}

.type-option-view {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 150px; /* Adjust the gap as needed */
}

@media only screen and (max-width: 991px) {
    .type-option-view{ gap: 20px;}
}
/* Scoped CSS for renewal-invoice-template */

/* General body styling */
.renewal-invoice-body {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

/* Table styling */
.renewal-invoice-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.renewal-invoice-table td,
.renewal-invoice-table th {
    word-wrap: break-word;
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #333333;
    line-height: 1.5;
}

/* Header styling */
.renewal-invoice-header {
    background-color: #ffffff;
    text-align: center;
    padding: 20px 0;
}

.renewal-invoice-header img {
    max-width: 300px;
    height: auto;
}

/* Section headers */
.renewal-invoice-section-header {
    font-size: 16px;
    font-weight: bold;
    color: #012169;
    margin-bottom: 10px;
}

/* Invoice details */
.renewal-invoice-details {
    background-color: #f6f6f6;
    padding: 10px 0;
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    text-align: center;
}

.renewal-invoice-details strong {
    font-size: 12px;
    color: #012169;
    text-transform: uppercase;
}

/* Table header styling */
.renewal-invoice-table-header {
    background-color: #012169;
    color: #ffffff;
    font-size: 16px;
    text-transform: uppercase;
    text-align: center;
    border: 1px solid #ebebeb;
}

/* Table row styling */
.renewal-invoice-table-row {
    font-size: 14px;
    text-align: center;
    border: 1px solid #ebebeb;
}

.renewal-invoice-table-row:nth-child(even) {
    background-color: #f9f9f9;
}

/* Footer styling */
.renewal-invoice-footer {
    font-size: 14px;
    color: #333333;
    text-align: left;
    padding: 10px 0;
}


.btn-view-details {
    background-color: #007bff; /* Primary blue color */
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.btn-view-details:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: #fff;
    text-decoration: none;
}

.btn-view-website {
    background-color: #6c757d; /* Secondary gray color */
    color: #fff;
    border: none;
    padding: 8px 12px;
    font-size: 12px;
    transition: background-color 0.3s ease;
}

.btn-view-website:hover {
    background-color: #5a6268; /* Darker gray on hover */
    color: #fff;
    text-decoration: none;
}

.captionHeadViewAccommodation {
    text-align: center;
    margin-top: 30px;
}
.captionHeadViewAccommodation h1 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 50px;
    color: #000;
    line-height: 60px;
}
.captionHeadViewAccommodation h1 span {
    color: #012169;
    font-size: 50px;
    font-family: "Bebas Neue", sans-serif;
}

.carousel-inner-css {
    min-height: 400px; /* Adjust as needed */
    background: #f8f9fa; /* light gray instead of white flash */
}

.carousel-item-css img {
    width: 100%;
    height: 400px; /* Fixed height so it doesn't collapse */
    object-fit: cover; /* Maintain aspect ratio, cover the box */
}

.heading-font {
    font-family: "Inter", sans-serif !important;
    font-size: 17px;
}
