/** Main Popup Styling */
.satisfaction_popup {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Black background with transparency */
	overflow-y: auto;

}

/** Container Styling */
.container_fluid {
    background-color: #34495E;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2%;
}

.container_fluid h4, .container_fluid h6 {
    margin-bottom: 0;
    color: #fff;
}

.container_fluid img {
    width: 10%;
}

/** Popup Content Styling */
.satisfaction_popup_content {
    background-color: #fff;
    margin: 5% auto;
    width: 80%;
    max-width: 1200px;
    text-align: center;
    position: relative;
}

.satisfaction_button_container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1%;
    width: 100%;
}

/** Close Button Styling */
.satisfaction_close {
    color: #aaa;
    font-weight: bold;
    cursor: pointer;
    align-self: end;
}

.satisfaction_close:hover,
.satisfaction_close:focus {
    color: black;
    text-decoration: none;
}

/** Body 1 Main Panel Styling */
.satisfaction_panel_container {
    background-color: #fff;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    font-size: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
    width: 100%;
    padding-left: 2%;
    padding-right: 2%;
	color:#34495E;
}


/** Ratings Container */
.satisfaction_ratings_container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
}

.satisfaction_inner_container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    flex-wrap: wrap;
}

.satisfaction_rating {
    flex: 1;
    padding: 20px;
    margin: 10px 5px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s ease;
}

.satisfaction_rating:hover,
.satisfaction_rating.active {
    background-color: #ccc;
}

.satisfaction_rating .icon {
    width: 40px;
    font-size: 5rem;
}

.satisfaction_rating small {
    margin-top: 10px;
}

/** Button Styling */
.satisfaction_btn {
    color: #000;
    border-radius: 4px;
    border: none;
    padding: 12px 30px;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s ease;
    width: 100%;
}

.satisfaction_btn:active {
    transform: scale(0.98);
}

.satisfaction_btn:hover {
    background-color: #005a87;
}

.satisfaction_back_btn {
    background-color: #777;
    width: 40%;
}

.satisfaction_back_btn:hover {
    background-color: #555;
}

.satisfaction_finish_btn {
    background-color: #28a745;
    width: 40%;
}

.satisfaction_finish_btn:hover {
    background-color: #218838;
}

/** Body 2 Specific Styling */
.satisfaction_review_row,
.satisfaction_review_one {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

h6.satisfaction_eng_review,
h6.satisfaction_ar_review {
    font-size: 12px;
    color: #34495E;
    font-weight: bold;
    width: 23%;
    text-align: start;
}

h6.satisfaction_ar_review {
    text-align: end;
}

/** Smile List Styling */
.satisfaction_smile_list {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 50%;
}

.satisfaction_smile_list li {
    text-align: center;
    margin: 0 5px;
    width: 100%;
}

/** Radio Button Specific Styling */
.satisfaction_rating input[type="radio"] {
    display: none; /* Hide default radio button */
}
.satisfaction_smile_list input[type="radio"] {
    display: none; /* Hide default radio button */
}

.satisfaction_rating input[type="radio"] + .satisfaction_btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.satisfaction_smile_list  input[type="radio"] + .satisfaction_btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.satisfaction_rating input[type="radio"]:checked + .satisfaction_btn {
    background-color: #7e7e7e;
}
.satisfaction_smile_list  input[type="radio"]:checked + .satisfaction_btn {
    background-color: #7e7e7e;
}

/** Icon Button Styling */
.satisfaction_icon_btn {
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.satisfaction_icon_btn:hover {
    background-color: #e0e0e0;
}

.satisfaction_icon_btn i {
    font-size: 24px;
    color: #555;
}

/** Button Container */
.button_container {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

/** Popup Button Styling */
button#satisfaction_popupButton {
    width: fit-content;
    position: fixed;
    bottom: -7px;
    left: 2%;
    background-color: #34495E ;
    padding: 10px;
    z-index: 999;
	border:0;
}

button#satisfaction_popupButton i {
    font-size: clamp(3rem, 4vw, 5rem);
	color:#fff;
}