.w-100 {
    width: 100% !important;
}

.float-start {
    float: left !important;
}

.profile-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    /* box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); */
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
}

.profile-image {
    /* background-color: #e0e0e0; */
    display: flex;
    align-items: center;
    flex-direction: column; /* Ensure elements stack vertically */
    justify-content: center;
    color: #666;
    font-size: 24px;
    border-radius: 8px;
    text-align: center;
}

.thumbnail_gallery {
    margin-top: 15px; /* Add spacing between main image and thumbnails */
}

    .thumbnail_gallery ul {
        display: flex;
        gap: 5px; /* Space between thumbnails */
        list-style: none;
        padding: 0;
        justify-content: center; /* Center-align thumbnails */
    }

        .thumbnail_gallery ul li {
            display: inline-block;
        }

    .thumbnail_gallery img {
        width: 60px; /* Thumbnail width */
        height: 60px; /* Thumbnail height */
        object-fit: cover;
        border: 1px solid #ddd; /* Optional border for thumbnails */
        border-radius: 4px; /* Rounded corners */
    }

.profile-info {
    padding: 20px;
}

    .profile-info h2 {
        font-weight: bold;
        margin-bottom: 5px;
    }

    .profile-info .profile-basic-info {
        padding: 20px 30px 20px;
        text-align: center;
    }

    .profile-info .profile-basic-content {
        padding: 20px 30px;
        margin: 0 auto;
        text-align: center;
    }

        .profile-info .profile-basic-content .icon-btns {
            margin-top: 60px;
            text-align: center;
        }

    .profile-info .distance {
        color: #900000;
        font-weight: bold;
    }

.profile-actions {
    margin-top: 40px;
    text-align: center;
}

.icon-btns i {
    font-size: 20px;
    color: #900000;
}

.icon-btns .btn-revert i {
    color: #f7f7f7;
}
.icon-btns .btn {
    background-color: #f7f7f7;
    border-radius: 50%;
    padding: 10px 12px;
    margin: 0 5px;
}

.icon-btns .btn.btn-revert {
    background-color: #900000;    
}



/* Desktop view */
@media (min-width: 768px) {
    .profile-image, .profile-info {
        width: 50%;
        height: auto
    }
}

/* Mobile view */
@media (max-width: 767px) {
    .profile-container {
        flex-direction: column;
    }

    .profile-image, .profile-info {
        width: 100%;
        height: auto;
    }
    /* Add margin between buttons in mobile view */
    .profile-actions .main-red-btn {
        margin: 5px 0;
        width: 100%; /* Optional: Make buttons full-width in mobile view */
    }
}

@media (max-width: 767px) {
    /* Ensure that the `ul` takes 100% width in mobile view */
    .profile-tab ul {
        width: 100% !important;
    }
}

#toggleReadMore {
    font-size: 14px;
    color: #007bff;
    cursor: pointer;
    text-decoration: underline;
}

    #toggleReadMore:hover {
        color: #0056b3;
    }

.horizontal-scroll {
    white-space: nowrap;
    overflow-x: auto;
}

    .horizontal-scroll img {
        display: inline-block;
        margin-right: 5px;
    }

.blur {
    filter: blur(15px);
}

.aboutTextContainer {
    max-height: 250px; /* Change as needed */
    overflow: hidden;
    transition: height 0.3s ease;
}

    .aboutTextContainer.expanded {
        height: 250px; /* Change as needed */
        overflow: auto; /* Enables scrolling */
    }

/* Specific to the social icons list */
.copyright_social-new ul {
    list-style-type: none;
    padding: 0;
    margin: 6.5px;
}

.copyright_social-new li {
    display: inline-block;
    margin: 0 5px;
}

.copyright_social-new .social-icons-new {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../img/soul-icon/social-icons-new.png');
    background-size: 240px 40px;
    background-repeat: no-repeat;
}

.copyright_social-new .social-icons-new-color {
    width: 40px;
    height: 40px;
    display: inline-block;
    background-image: url('../img/soul-icon/social-icons-colors.png');
    background-size: 240px 40px;
    background-repeat: no-repeat;
}

.copyright_social-new .social-icons-new:hover {
    background-image: url('../img/soul-icon/social-icons-colors.png');
}

.copyright_social-new .facebook {
    background-position: 0 0;
}

.copyright_social-new .instagram {
    background-position: -40px 0;
}

.copyright_social-new .x {
    background-position: -80px 0;
}

.copyright_social-new .linkedin {
    background-position: -120px 0;
}

.copyright_social-new .tiktok {
    background-position: -160px 0;
}

.copyright_social-new .edit-social-links {
    background-position: -200px 0;
}



.modal-dialog-centered {
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Main Option List */
.action-list {
    list-style: none;
    padding: 0;
}

    .action-list li {
        padding: 12px;
        font-size: 16px;
        cursor: pointer;
        border-bottom: 1px solid #e0e0e0;
        transition: background 0.3s ease-in-out;
    }

        .action-list li:hover {
            background: #f5f5f5;
        }

/* Report Screen Styling */
.report-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.report-container {
    width: 100%;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}

/* Larger and Stylish Textarea */
.report-textarea {
    width: 100%;
    height: 120px !important;
    padding: 12px !important;
    font-size: 15px;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    resize: none;
    background: #fff;
}

    .report-textarea:focus {
        outline: none;
        border-color: #007bff;
        box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
    }

/* Elegant Submit Button */
.report-submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    font-size: 16px;
    background: #900000; /* Dark red */
    color: white;
    border: none;
    border-radius: 6px;
    transition: background 0.3s ease-in-out;
}

    .report-submit-btn:hover {
        background: #660000; /* Slightly darker red on hover */
    }


/* Back Button Styling */
.back-btn {
    border: none;
    background: transparent;
    color: #007bff;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
    margin-left: auto;
}

.rtl .back-btn {
    margin-right: auto;
    margin-left: unset;
}

.back-btn:hover {
    text-decoration: underline;
}
