/* ============================
   PAGE BACKGROUND
============================ */
body {
    background-color: rgb(29,30,38);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}


/* ============================
   MODAL CONTAINER
============================ */
#mood_page_wrapper {
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#mood_container {
    background-color: rgb(42,47,60);
    width: 90%;
    max-width: 550px;
    border-radius: 18px;
    padding: 40px 35px;
    position: relative;
    text-align: center;
}


/* ============================
   CLOSE ICON
============================ */
#close_icon {
    position: absolute;
    right: 30px;
    top: 25px;
    cursor: pointer;
}


/* ============================
   TITLES
============================ */
#mood_title {
    color: white;
    font-size: 2rem;
    margin-top: 10px;
}

#mood_subtitle {
    color: rgb(160,160,160);
    margin-bottom: 35px;
}



/* ============================
   FACES ROW
============================ */
#faces_row {
    display: flex;
    justify-content: space-between; /* <-- FIXED alignment */
    align-items: center;
    width: 100%;
    padding: 0 25px; /* control left/right spacing */
    margin-bottom: 40px;
}

.mood-face {
    width: 90px;
    height: 90px;
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
    opacity: 0.5;
    cursor: pointer;
}

/* Neon hover */
.mood-face:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

/* When selected */
.mood-face.selected-mood {
    opacity: 1;
    transform: scale(1.18);
    filter: drop-shadow(0px 0px 12px rgb(158,255,0));
}



/* ============================
   SLIDER
============================ */
#slider_container {
    width: 100%;
    display: flex;
    justify-content: center;
}

#slider {
    width: 85%;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: rgb(65,70,85);
    border-radius: 5px;
    outline: none;
}

/* Slider thumb */
#slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(158,255,0);
    box-shadow: 0 0 12px rgb(158,255,0);
    cursor: pointer;
}

#slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgb(158,255,0);
    box-shadow: 0 0 12px rgb(158,255,0);
    cursor: pointer;
}
