/* Oomroh Custom Styles */
/* START STYLE TO MAKE TEXT CONTRAST WITH ADD SEMI-TRANSPARENT BACKGROUND */
/* Oomroh Custom Styles */
.oomroh-details {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1100px;
    background: rgba(0, 0, 0, 0.1); /* Softer transparency */
    padding: 12px 18px;
    border-radius: 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(3px); /* Adds smooth blur effect */
}

/* Styling for the text */
.oomroh-details a {
    font-family: 'Inter', roboto; /* Use a modern, readable font */
    color: white;
    font-size: clamp(10px, 1.5vw, 15px); /* Balanced font size */
    font-weight: 500;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Icons */
.oomroh-details i {
    font-size: clamp(12px, 2vw, 18px);
    margin-right: 6px;
}

/* Line separator */
.oomroh-line {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 6px 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .oomroh-details {
        flex-direction: column;
        text-align: center;
        padding: 14px;
    }
    .oomroh-details a {
        margin-bottom: 6px;
    }
}

/* END OF: STYLE TO MAKE TEXT CONTRAST WITH ADD SEMI-TRANSPARENT BACKGROUND */

/* CAROUSEL */

/* IMAGE-WRAPPER */
.carousel-image-wrapper {
    width: 750px;
    height: 450px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0; /* Placeholder background */
}

.carousel-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures no distortion */
}

/* INLINE STYLING */
.carousel-item img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.carousel-item img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}

.carousel-inner {
    height: 500px;
    align-items: center;
}

/* disable select without add highlight */
.select-readonly {
    pointer-events: none; /* Prevent interaction */
    background-color: inherit; /* Keep the background consistent */
    color: inherit; /* Ensure the text color matches */
}

/* END OF: CAROUSEL */


/* SHOW AVATAR IMAGE */

.avatar-upload {
    position: relative;
    max-width: 205px;
}

.avatar-upload .avatar-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.avatar-upload .avatar-edit input {
    display: none;
}

.avatar-upload .avatar-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.avatar-upload .avatar-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.avatar-upload .avatar-edit input+label:after {
    content: "\F4CA";
    font-family: 'Bootstrap-Icons';
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.avatar-upload .avatar-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.avatar-upload .avatar-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* END OF: SHOW AVATAR IMAGE */


/* INVOICE SHOW MUTAWWIF IMAGE */

.call-wa-photo-fit-cover {
    object-fit: cover;
    object-position: center;
}

/* END OF: INVOICE SHOW MUTAWWIF IMAGE */



.city-box {
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: bold;
    margin: 5px;
    display: inline-block;
}
.source-city {
    background: #f39c12;
    color: white;
    box-shadow: 0px 4px 8px rgba(243, 156, 18, 0.3);
}
.destination-city {
    background: #3498db;
    color: white;
    box-shadow: 0px 4px 8px rgba(52, 152, 219, 0.3);
}
.arrow {
    font-size: 24px;
    margin: 0 10px;
    color: #2c3e50;
}
@media (max-width: 768px) {
    .d-flex {
        flex-direction: column;
    }
    .arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }
}
/* PRINT INVOICE */

/* END OF: PRINT INVOICE */


/* BUTTON COLOR LIST */

.btn-custom-blue {
    background-color: #2596be;
    color: white;
    border-color: #2596be;
}
.btn-custom-blue:hover {
    background-color: #1d7fa0;
    border-color: #1d7fa0;
}

/* #60c488 */

/* END OF: BUTTON COLOR LIST */


/* STAR REVIEW */

.star-rating .star-icon {
    font-size: 1.5rem;
    color: #e4e5e9;
    cursor: pointer;
    transition: color 0.2s;
    margin-right: 0.25rem;
}
.star-rating .star-icon:hover,
.star-rating .star-icon.active {
    color: #ffc107;
}
.rating-text {
    transition: all 0.2s;
}

/* END OF: STAR REVIEW */

/* REVIEW FORMAT STYLING IN MUTAWWIF DETAIL */
.review-item {
    background-color: #f8f9fa;
}
.review-rating {
    font-size: 1.1rem;
}
.fa-star {
    margin-right: 2px;
}
/* END OF: REVIEW FORMAT STYLING IN MUTAWWIF DETAIL */

/* BUTTON ALREADY REPORTED */

/* Base reported style */
.btn.already-reported {
    position: relative;
    border-left: 3px solid #ffc107 !important;
}

/* Reported badge style */
.btn.already-reported .badge {
    background-color: #ffc107 !important;
    color: #000 !important;
}

/* Tooltip-style "You reported this" indicator */
.btn.already-reported:after {
    content: "✓ Reported";
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ffc107;
    color: #000;
    font-size: 9px;
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: bold;
}
.helpful-btn.helpful-active {
    background-color: #e8f5e9;
    /* border-color: #4caf50; */
    color: #2e7d32;
}

.helpful-btn.helpful-active .fe-thumbs-up {
    color: #4caf50;
}

.helpful-btn .badge.bg-success {
    background-color: #4caf50 !important;
    color: white !important;
}
/* END OF: BUTTON ALREADY REPORTED */


/* PAGINATION */
.pagination {
    margin-top: 20px;
}
.page-item.active .page-link {
    background-color: #467fcf;
    border-color: #467fcf;
}
.page-link {
    color: #467fcf;
}
.page-item.disabled .page-link {
    color: #6c757d;
}
/* END OF: PAGINATION */

/* GUIDELINES FORMATING */

.pl-3 ul, .pl-3 ol {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
.pl-3 li {
    margin-bottom: 0.5rem;
}
.pl-3 h3, .pl-3 h4, .pl-3 h5 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}
.pl-3 a {
    /* color: #0d6efd; */

    color: #2ecc71;
    text-decoration: underline;
}
/* Custom bullet points */
.guideline-content ul {
    list-style: none;
    padding-left: 1rem;
}

.guideline-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.guideline-content ul li:before {
    content: "•";
    /* content: "-"; */
    color: #0d6efd;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 0;
}

/* For nested lists */
.guideline-content ul ul {
    margin-top: 0.5rem;
    padding-left: 1.5rem;
}

.guideline-content ul ul li:before {
    content: "◦";
    color: #6c757d;
}

/* Headings style */
.guideline-content h3, 
.guideline-content h4, 
.guideline-content h5 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.3rem;
}

/* Links style */
.guideline-content a {
    /* color: #0d6efd; */
    color: #2ecc71;
    text-decoration: underline;
}
/* END OF: GUIDELINESW FORMATTING */