/* html::-webkit-scrollbar {
    display: none;
} */

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1cc8479;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: #c27306;
    color: #fff;
    padding: 0px;
}

nav ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    justify-content: right;
    max-height: 80px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    display:block;
    justify-content: center;
    margin-top: 35px;
    margin-right: 40px;
    font-weight: bold;

}

.brand {
    display: flex;
    align-items: center;
    margin-right: auto; 
    flex-direction: row;
    white-space: nowrap;
}

.brandname{
    flex: 1;
    font-size: 24px;
    font-weight: bold;
    margin-left: 10px;
    margin-top: 0x;
    margin-bottom: 25px;
}

.brandname:hover{
    background-color: transparent;
}

.logo {
    width: 100px; 
    height: auto;
    margin-right: 10px;
    flex: 1;
}

nav ul li a:hover {
    background-color: #7d4b0572;
    border-radius: 5px;
}

main {
    padding-bottom: 0px;
    flex-grow: 1;
}

footer {
    background-color: #03547f;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
    width: 100%;
    position: relative;
    padding: 10px;
}

.visible {
    visibility: hidden;
}

footer div a{
    color: #c27306;
}

.whatsapp-button {
    position: fixed;
    bottom: 15px;
    right: 10px;
    width: 21vw;
    height: 3vh;
    background-color: #25D366;
    color: white;
    border-radius: 50px;
    padding: 10px 10px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.whatsapp-button img {
    width: 35px;
    height: 35px;
}

.whatsapp-button:hover {
    background-color: #20b358;
}

.slideshow-container {
    height: 60vh;
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.slideshow {
    height: auto;
    width: auto;
    position: relative;
    text-align: center; 
    background: rgba(0, 0, 0, 0.253);
}

 .slideshow img {
    width: auto;
    height: auto;
    opacity: 45%;
} 

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #c27306;
    text-align: center;
    z-index: 10;
    padding: 20px;
    border-radius: 10px;
    font-size: 24px;
    
}

/* Intro Section */
.intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #f1cd8450; 
    border-radius: 10px;
    margin: 20px 0;
}

.intro-text {
    flex: 1;
    text-align: center;
    padding-right: 20px;
}

.intro-text h2 {
    margin-bottom: 10px;
}

.intro-text p {
    margin: 0;
}

.intro-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-image img {
    max-width: 100%;
    width: 55vw;
    height: 70vh;
    border-radius: 10px;
}

.offer-container {
    text-align: center;
    justify-content: center;
    background-color: #f1cd8450; 
    padding-left: 10px;
    padding-right: 10px;
}

.offer-container h2 {
    text-align: center;
}

.offer-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.offer-button {
    text-decoration: none;
    color: inherit;
    text-align: center;
    position: relative;
    display: inline-block;
    border-radius: 10px;
    width: 45vw;
    height: 65vh;

}

.offer-button img {
    width: 45vw;
    height: 65vh;
    object-fit: cover;
    border-radius: 10px;
    opacity: 55%;
    transition: transform 0.5s ease;
}

.button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0);
    transition: transform 1s ease;
    opacity: 1;
}

.title-text {
    font-size: 34px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: top 0.5s ease;
}

.button-text {
  font-size: 20px;
  opacity: 0;
  transition: opacity 1s ease;
}

.offer-button:hover .title-text {
    top: 20%;
}
  
.offer-button:hover .button-text {
    opacity: 1;
}
  
.offer-button:hover img {
    opacity: 0;
    transition: opacity 1s ease;
}

.offer-button:hover .button-overlay {
    opacity: 1;
    transition: opacity 1s ease;
    background-color: #f1cd8452;
    border-radius: 10px;
}


.contact-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    margin: 20px 0;
    background-color: #f1cd8450;
    border-radius: 10px;
}

.contact-us-text {
    flex: 1;
    padding-right: 20px;
}

.contact-us-text h2{
    margin: 10px;
}

.contact-us-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-us-info p {
    margin-bottom: 10px;
    margin-top: 10px;
}

.contact-us-info button {
    padding: 10px 20px;
    background-color: #0270ab;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 10px;
    margin-top: 10px;
}

.contact-us-info button:hover {
    background-color: #015d8f;
}

.contact-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-left{
    flex: 1;
    justify-content: right;
    margin: 10px;
}

.contact-right{
    flex: 1;
    display: flex;
    margin-bottom: 20px;
    justify-content: left;
}

.contact-right form{
    display: flex;
    flex-direction: column;
    margin: 10px;
    width: 100%;
}

.contact-right label{
    margin-left: 10px;
}

.contact-right input{
    padding: 8px;
    margin-left: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fcfcfc50;
}

.contact-right button{
    padding: 10px;
    margin: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.inquiry{
    width: 100%;
    margin: 10px;
    border: 1px solid #ccc;
    background-color: #fcfcfc50;
}

.contact-right button{
    background-color: #218838;
}

.contact-success {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.contact-success-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.contact-success-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.contact-success-close:hover,
.contact-success-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.contact-failure {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.contact-failure-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #888;
    width: 80%;
    text-align: center;
}

.contact-failure-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.contact-failure-close:hover,
.contact-failure-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Subscribe */
#base {
    background-color: #03547f;
    padding: 1rem;
    margin-top: 2rem;
    position: static;

}

#subscribe {
    background-color: #03547f;
    position: relative;
    width: 350px;

}

#subscribe h2 {
    width: 400px;
    margin: -1px;
    
}

#subscribe-form {
    display: flex;
    width: 320px;
    padding-bottom: 1rem;
    margin: 15px;
    margin-left: 25px;
    text-align: center;

}

#subscribe-form input[type="email"] {
    padding: 0.5rem;
    font-size: 1rem;
    margin-right: 0rem;
}

#subscribe-form button {
    padding: 0.5rem 0.5rem;
    font-size: 1rem;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
}

#subscribe-form button:hover {
    background-color: #575757;
}

#subscribe p {
    display: none;
    margin-left: 50px;
    margin-top: -25px;
    position: absolute;
    color: #25D366;
    
}

#packages h1{
    text-align: center;
    font-size: 24px;
}

.packages-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.package {
    border: 1px solid #ccc;
    padding: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.package img {
    width: 100%;
    height: 200px;
}

.package h2 {
    font-size: 1.5em;
}

.package p {
    margin: 5px;
}

.package .cost {
    font-weight: bold;
    color: #2E8B57;
    text-align: center;
    margin-bottom: 0px;
}

#tours h1{
    text-align: center;
    font-size: 24px;
}

.tours-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.tour {
    border: 1px solid #ccc;
    padding: 10px;
    width: 300px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.tour img {
    width: 100%;
    height: 200px;
}

.tour h2 {
    font-size: 1.5em;
}

.tour p {
    margin: 5px;
}

.tour .cost {
    font-weight: bold;
    color: #2E8B57;
    text-align: center;
    margin-bottom: 0px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    background-color: #ffffff4c;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    margin: 10px 5px;
    border-radius: 60px;
}

.tab-button.active {
    background-color: #03547f;
    color: white;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.pagination button {
    padding: 10px;
    margin: 0 10px;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    background-color: #f1cd848e;    
}

.popup-content {
    padding: 20px;
    border-radius: 10px;
    width: 80%;
    height: 80%;
    overflow-y: auto;
    position: relative;
    background-color: #f7e1b7;

}

.popup-content::-webkit-scrollbar{
    display: none;
}

.popup-bottom{
    display: flex;
    justify-content:flex-start;
    margin-top: 20px;
    background-color: #f1cc8479;
    border-radius: 20px;
}

.popup-content img {
    width: 100%;
    height: auto;
}

.close {
    position: absolute;
    top: 5px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.popup-slideshow-container {
    position: relative;
    margin-top: 20px;
    width: 100%;
    height: auto;
}

.popup-slides {
    display: none;
    width: 100%;
    height: 500px;
    margin-bottom: 20px;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: rgba(255, 255, 255, 0.719);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
    background-color: rgba(255, 255, 255, 0.258);
}

.next {
    right: 0;
    border-radius: 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.popup-left {
    flex: 1;
    padding: 20px;
}

.popup-photos,
.popup-itinerary,
.popup-reviews {
    text-align: center;
    border-radius: 20px;
    background-color: #f1cc8479;

}

#downloadButton {
    background: transparent;
    border: none;
    color: #ffab02fc; 
    font-size: 16px;
    cursor: pointer;
    text-decoration: underline; 
  }

#downloadButton:hover {
    color: #c28305bb;
  }

 #downloadButton:focus {
    outline: none;
  }

.popup-description{
    margin-top: auto;
    text-align: center;
    border-radius: 20px;
    background-color: #f1cc8479;
    margin-bottom: 20px;
    height: auto;
    position: relative;
}

.popup-description h2{
    margin-top: 10px;
}

#itinerary-content {
    display: block;
    overflow: hidden;
    border-radius: 0px 0px 20px 20px;
}

#itinerary-toggle {
    cursor: pointer;
    padding: 10px;
    color: black;
    text-align: center;
    font-weight: bold;
    font-size: x-large;
    border-radius: 20px;
}

#itinerary-toggle:hover {
    background-color: #f1cd84bb;
}

.day-itinerary p {
    text-align: left;
    padding: 5px;
}

.popup-incl-excl{
    display: flex;
    background-color: #f1cc8479;
    border-radius: 20px;
    margin-top: 20px;
    height: auto;
    flex-direction: row;
    align-items:start;
}

.included {
    text-align: center;
    flex: 1;
}

.included ul{
    text-align: left;
    margin: 5px;
    padding-left: 10vw;
}

.excluded{
    flex: 1;
    text-align: center;
}

.excluded ul{
    text-align: left;
    margin: 5px;
    padding-left: 10vw;
}

.bottom{
    display: flex;
    padding: 20px;
    margin-top: 20px;
    background-color: #f1cc8479;
    border-radius: 20px;
    text-align: center;
}

.pricingInfo{
    flex: 1;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
}

.pricingInfo h3{
    margin: 0px;
    text-align: center;
}

.pricingInfo p{
    margin: 0px;
    padding: 10px;
}

.pricing{
    flex: 1;
    text-align: left;
    padding-top: 20px;
}

.pricing label{
    font-weight: bold;
    font-size: 18px;
    padding: 10px;
}

.pricing button{
    border-radius: 5px;
    background-color: #f1cd84db;
}

.pricing div {
    padding: 10px;
}

.bottom {
    margin-top: 20px;
}

#extraHotelBooking {
    padding-left: 10px;
    margin-left: 10px;
    margin-right: -2px;
}

#arrival-date{
    border-radius: 20px;
    padding-left: 5px;
}

.tour-price{
    text-align: center;
}

.popup-description h2{
    margin-top: 20px;
    display: inline;
}

.popup-description p{
    padding-bottom: 10px;

}

.popup-cost{
    display: inline-block;
    justify-content: space-around;
}

.popup-right {
    flex: 1;
    padding: 20px;
    justify-items: auto;
    display: flex;
    flex-direction: column;
    align-items:end;
    margin-left: 50px;
}

.price-section {
    margin-top: 20px;
}

#package-price {
    font-size: 24px;
    font-weight: bold;
}


.book-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-align: center;
    border: none;
    cursor: pointer;
    border-radius: 20px;
    text-decoration: none;
    opacity: 0.5;
    pointer-events: none;
}

.book-button:hover {
    background-color: #45a049;
}

.noDate {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.noDate-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.noDate-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.noDate-close:hover,
.noDate-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/*Review section*/
.review-container{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.review-left{
    flex: 1;
    justify-content: right;
    margin: 10px;
    text-align: center;
}

.review-right{
    flex: 1;
    display: flex;
    margin-bottom: 20px;
    justify-content: left;
}

.review-right form{
    display: flex;
    flex-direction: column;
    margin: 10px;
    width: 100%;
}

.review-right label{
    margin-left: 10px;
    display: block;
}

.review-right input{
    padding: 8px;
    margin: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    background-color: #fcfcfc50;
}

.review-right button{
    padding: 10px;
    margin: 10px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    width: 100%;
}

.review-right button{
    background-color: #218838;
}
.review{
    width: 100%;
    margin: 10px;
    border: 1px solid #ccc;
    background-color: #fcfcfc50;
}
.dropdown-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.dropdown-select {
    width: 100%;
    padding: 8px;
    margin: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ccc;
    cursor: pointer;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    outline: none;
    background-color: #fcfcfc50;
}

.dropdown-options {
    display: none;
    position: absolute;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    z-index: 1;
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    margin-left: 10px;
    margin-top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dropdown-options option {
    padding: 8px;
    cursor: pointer;
    font-size: 16px;
    border-bottom: 1px solid #eee;
}

.dropdown-container.open .dropdown-options {
    display: block;
}

.review-success {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.review-success-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #888;
    width: 80%;
}

.review-success-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.review-success-close:hover,
.review-success-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.review-failure {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}

.review-failure-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #888;
    width: 80%;
}

.review-failure-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.review-failure-close:hover,
.review-failure-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.review-display {
    text-align: center;
    padding: 20px;
}

.review-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    border-radius: 10px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
}

.review-slide {
    display: none;
    flex: 1;
    padding: 10px;
    background-color: #ffffff87;
    border:1px solid #0000003f;
    border-radius: 10px;
    min-width: calc(90% / 3); 
}

.review-slide.active {
    display: block;
}

.slider-controls {
    margin-top: 10px;
}

.slider-controls button {
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 2em;
    color: #807f7f;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.rating input:checked ~ label {
    color: #ffc700;
}

.rating label:hover,
.rating label:hover ~ label {
    color: #ffc700;
}

.confirmation-container {
    width: 75vw;
    margin: 50px auto;
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

#confirmationSection{
    text-align: center;
    background-color: #f1cc8479;
    border-radius: 20px;
    padding: 5px;
}

.confirmationSection h1 {
    color: #28a745;
    font-size: 24px;
    text-align: center;
}

.confirmationSection p {
    text-align: center;
    color: #333;
    margin-top: 10px;
}

.customer-details {
    margin-top: 20px;
}

.customer-details h2{
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.customer-details p {
    font-size: 16px;
    color: #555;
}

.booking-details {
    margin-top: 20px;
}

.booking-details h2{
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    text-align: center;
}

.booking-details p {
    font-size: 16px;
    color: #555;
}

#printButton {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#printButton:hover {
    background-color: #0056b3;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tab-button:hover {
    background-color: #ddd;
}

.tab-button.active {
    background-color: #af8227;
    color: white;
    font-weight: bold;
}

.tab-content {
    display: none;
    margin-top: 20px;
}

.tab-content.active {
    display: block;
}

table {
    width: 100%;
    border-collapse: collapse; 
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

th {
    background-color: #855a0679; 
    color: white;
    padding: 12px 20px; 
    text-align: left;
    border: 1px solid #ddd;
}

td {
    padding: 12px 20px; 
    border: 1px solid #ddd;
    text-align: left;
}

tr:nth-child(even) {
    background-color: #f2f2f2; 
}

tr:nth-child(odd) {
    background-color: #ffffff; 
}

tr:hover {
    background-color: #ddd; 
}

h1, h2 {
    font-family: Arial, sans-serif;
    font-size: 24px;
    text-align: center;
}

section {
    margin-bottom: 40px;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
}

.subscribers-window {
    width: 48%; 
    height: 400px; 
    overflow-y: auto; 
    margin-right: 2%; 
    border: 0px; 
    padding: 10px; 
}

.upload-form {
    width: 48%; 
    padding: 10px;
    border: 0px; 
    border-radius: 5px;
}

#pdf-file {
    margin-bottom: 10px;
}

#submit-pdf {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-bottom: 10px;
}
#send-pdf {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    margin-top: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#submit-pdf:hover {
    background-color: #45a049;
}
#send-pdf:hover {
    background-color: #45a049;
}

.dashpopup {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #f1cd8446;
        
}

.dashpopup-content {
    background-color: #f8cc7a;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    border-radius: 20px;
    text-align: center;
}

#response-text {
    font-size: 18px;
    margin-top: 20px;
    background-color: #ffedca;
    border-radius: 10px;
    border: 1px solid #f8cc7a;
}

#response-send{
    justify-content: center;
    border-radius: 10px;
    margin-top: 20px;
    background-color: rgb(108, 214, 108);
}

.dashclose {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    color: #000000;
}

.dashclose:hover,
.dashclose:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.inquiry-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 10px;
}

.tab-button-inquiry {
    padding: 10px 20px 10px;
    border: 1px solid #ddd;
    background-color: #f1f1f1;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 60px;
}

.tab-button-inquiry.active {
    background-color: #af8227;
    color: white;
    font-weight: bold;
}

.inquiry-tab-content {
    display: none;
}

.inquiry-tab-content.active {
    display: block;
}

.new-inquiry-table th:nth-child(5), 
.new-inquiry-table td:nth-child(5) {
    width: auto; 
}

.new-inquiry-table th:not(:nth-child(5)),
.new-inquiry-table td:not(:nth-child(5)) {
    width: 75px;
}

.responded-inquiry-table th:nth-child(-n+4), 
.responded-inquiry-table td:nth-child(-n+4) {
    width: 75px;
}

.responded-inquiry-table th:nth-child(5), 
.responded-inquiry-table td:nth-child(5),
.responded-inquiry-table th:nth-child(6), 
.responded-inquiry-table td:nth-child(6) {
    width: auto;
}