body {
  /*actually body*/
  margin: 0;
  /* Height of the footer */
  background: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  /* Ensure the body takes full height */
  overflow-x: hidden !important;
  scrollbar-width: none;
  /* Hide scrollbar (Firefox) */
  -ms-overflow-style: none;
  /* Hide scrollbar (IE/Edge) */
}

/* Media Query for smaller screens */
@media (max-width: 768px) {
  #frm {
    width: 80%;
  }
}

.tab {
  overflow: hidden;
  background-color: inherit;
  justify-content: center;
  display: flex;
  height: 55px;
  position: relative;
  /* Ensure it's part of the normal document flow */
}

.tab button {
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 30px 30px;
  transition: 0.3s;
  font-size: 18px;
  color: white;
  background-color: #0095f6;
  border-radius: 15px;
}

.tab button:hover {
  background-color: #1565c0;
}

.tab button.active {
  background-color: #1565c0;
}

.tabcontent {
  display: none;
  flex-direction: column;
  border-top: none;
  background-color: inherit;
  flex-grow: 1;
  width: 100vw;
  margin-top: 80px;
}

a {
  background-color: inherit;
  color: white;
  padding: 0px;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-align: center;
  /* Horizontally centers text */
  text-decoration: none;
  color: #0095f6;
}

.button:hover {
  background-color: #1565c0;
}

.social-media {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
}

.fa-icon {
  margin: 0 10px;
  color: #999;
  font-size: 24px;
}

.fa-icon:hover {
  color: #666;
}

#frm {
  background-color: #fff;
  padding: 30px;
  border-radius: 35px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  max-width: 400px;

  margin: 0 auto;
}

#frm1 {
  background-color: #fff;
  padding: 30px;
  border-radius: 35px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0 auto;
}

#frm p {
  margin-bottom: 15px;
  flex-direction: column;
}

#frm label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

select,
#frm input[type="number"],
#frm input[type="text"],
#frm input[type="email"],
#frm input[type="tel"],
#frm input[type="password"],
#frm textarea {
  /* <-- added this line */
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 15px;
  font-size: 15px;
}

#frm input[type="submit"]:hover {
  background-color: #1565c0;
}

.form__text {
  text-align: center;
  margin-top: 20px;
}

.form__link {
  color: #337ab7;
}

.form__link:hover {
  color: #286090;
}

.center {
  margin-top: 10%;
  margin-bottom: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container1 {
  display: flex;
  flex-direction: row;
  /* Lay out children in a row for wider screens */
  margin: 0 auto;
  /* Center the container itself within its parent */
  justify-content: center;
  /* This will center the children vertically */
  align-items: center;
  /* This will center the children horizontally */
  max-width: 100%;
}

/* Centering the image horizontally with the text columns */

.row {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Adjust as needed */
  max-width: 39vw;
}

.column {
  background-color: #6aaef2;
  padding: 30px;
  margin-bottom: 15px;
  position: relative;
  border-radius: 35px;
  max-width: 30vw;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.column::before {
  top: 0;
}

.column::after {
  bottom: 0;
}

/* Responsive Layout */
@media screen and (max-width: 1020px) {
  .container1 {
    flex-direction: column;
  }

  .row {
    max-width: 90% !important;
  }

  .column {
    max-width: 90%;
    margin: 0 auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .container1 {
    margin-left: auto;
  }

  /* Centering the image horizontally with the text columns */
  .container1 > img {
    order: -1;
    /* Moves the image above the .row */
    align-self: center;
    /* Centers the image horizontally */
    max-width: 100%;
    /* Ensures the image is responsive and doesn't overflow its container */
    height: auto;
    /* Maintains the aspect ratio of the image */
  }
}

#education-explanation h3,
#education-explanation h4 {
  color: #333;
}

#education-explanation p {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

#education-explanation ul {
  padding-left: 20px;
  color: #666;
}

#education-explanation li {
  margin-bottom: 10px;
}

.createStoryH1 {
  position: relative;
  margin-bottom: 20px;
  width: 300px;
}

/*START OF JOIN PLATFORM CONTIANER */
.join-platform-section {
  text-align: center;
  padding: 30px 20px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
}

.join-platform-section h2 {
  margin: 15px 0 10px;
  color: #222;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding: 0rem 2rem;
  line-height: 1.2;
  align-self: center;
}

.join-platform-section p {
  font-size: 14px;
  color: #444;
  margin-bottom: 20px;
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}

.icon-row.bottom_logos {
  gap: 10%;
}

.icon-row.middle_logos_logos {
  margin-bottom: 45px;
  gap: 10%;
}

.cta-button {
  background-color: #0095f6;
  border: none;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

/*END OF JOIN PLATFORM CONTIANER */

.footer {
  /*actual footer*/
  position: relative;
  bottom: 0;
  left: 0;
  background-color: #91dcff;
  padding-top: 20px;
  width: 100vw;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #999;
  font-size: 14px;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0px;
  /* Space between sections */
}

.footer-content {
  display: flex;
  justify-content: center;
  gap: 0px;
  /* Space between Articles and Resources */
}

.footer a {
  color: black;
  cursor: pointer;
  text-decoration: none;
}

.footer a:hover {
  color: #0095f6;
}

.footer-section-articles {
  display: flex;
  flex-direction: column;
  /* Ensure content is stacked vertically */
  flex: 1;
  text-align: center;
}

.footer-section-resources {
  display: flex;
  flex-direction: column;
  /* Ensure content is stacked vertically */
  flex: 1;
  text-align: center;
}

footer h3 {
  font-size: 16px;
  display: flex;
  justify-content: center;
  color: #333;
  margin-bottom: 16px;
}

footer ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Ensure content is stacked vertically */
  list-style-type: none;
  padding: 0;
  margin: 0;
}

footer ul li {
  margin: 8px 0;
}

footer ul li a {
  text-decoration: none;
  color: #333;
  display: inline-flex;
  /* Center-aligns icon and text inline */
  align-items: center;
  transition: color 0.3s;
}

footer ul li a:hover {
  color: #0073bb;
}

.material-icons-outlined {
  font-size: 20px;
}

.step2container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 190px;
  width: 300px;
  position: relative;
  bottom: 20;
}

.adjustments_and_filters {
  display: flex;
  flex-direction: row;
}

.brush-color-input input[type="color"] {
  border: none;
  height: 30px;
  width: 40px;
  cursor: pointer;
  margin-left: 10px;
}

.brush-color-label {
  font-weight: bold;
  margin-right: 10px;
}

.font-button {
  outline: none;
  border: 2px solid transparent;
  padding: 5px;
  cursor: pointer;
  transition: border-color 0.2s ease-in-out;
  font-size: 16px;
  width: 50px;
  height: 40px;
  background-color: inherit;
  display: inline-grid;
  justify-content: center;
  align-items: center;
}

.font-button.active {
  border: 2px solid black;
  /* Active state */
  border-radius: 4px;
  /* Optional styling */
}

#textOptions {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  padding: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 2000;
  width: 200px;
  bottom: 50;
  left: 20;
}

.button-container {
  height: 0px;
}

/* Style the black slider track */
.vertical-slider {
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.2s ease;
  position: relative;
  transform: rotate(-90deg);
  z-index: 4000;
  top: 59;
  left: 17;
  flex-direction: column;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4px;
  background: #2e86c1;
  border-radius: 5px;
  outline: none;
  opacity: 0.9;
}

/* Change opacity on hover */
.vertical-slider:hover {
  opacity: 1;
}

/* Style the slider thumb (the draggable circle) */
.vertical-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Removes default browser styling */
  appearance: none;
  width: 7px;
  /* Width of the thumb */
  height: 20px;
  /* Height of the thumb */
  border-radius: 2px;
  /* Makes the thumb a circle */
  background: black;
  /* Darker blue for contrast */
  cursor: pointer;
  /* Changes cursor to a pointer */
}

.vertical-slider::-moz-range-thumb {
  /* Styling for Firefox */
  width: 5px;
  height: 20px;
  border-radius: 2px;
  background: #1b4f72;
  cursor: pointer;
}

.draw-options {
  position: absolute;
  bottom: 50px;
  flex-direction: row;
  left: 50px;
  width: 90px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.hidden {
  display: none;
}

input[type="color"] {
  margin-bottom: 10px;
}

.adjustmentsSection {
  height: 140px;
  display: flex;
  gap: 2px;
}

#toggleClear {
  position: relative;
  border: none;
  background-color: inherit;
  color: #2e86c1;
  width: 0px;
  height: 0px;
  top: 20;
  right: 60;
}

.adjustment-item {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  width: 90px;
}

.adjustment-Slider {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  width: 140px;
}

.adjustment-Number {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 13px;
}

.adjustment-Reset {
  position: relative;
  left: 15;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stories-container {
  position: absolute;
  background: white;
  left: 20;
  top: 200;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80px;
  max-height: 400px;
}

.story-item {
  margin-bottom: 15px;
  width: 100%;
}

h3 {
  margin: 0;
  font-size: 1em;
  font-weight: bold;
}

.profile_icon_pic_stories {
  width: auto;
  height: 60%;
  position: relative;
  top: 10;
  right: center;
  border-radius: 50%;
  /* Move the image to the center */
}

.profile_icon_button {
  width: auto;
  height: 50%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  top: 0;
  background-color: white;
  border-radius: 50%;
  border: none;
  padding: 0;
  cursor: pointer;
}

.plus-icon {
  position: relative;
  background-color: #0095f6;
  color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 19;
  height: 19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  bottom: 70px;
  left: 50px;
  border: none;
  padding: 5;
  cursor: pointer;
}

.overlay-container {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #333333;
  /* Adjust the alpha for transparency */
  align-items: center;
  justify-content: center;
  z-index: 1005;
  /* Ensure it's on top */
}

.Storycontent {
  background-color: rgb(255 255 255 / 80%);
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  min-height: 599px;
  width: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  box-sizing: border-box !important;
  text-align: center;
  flex-direction: column;
  display: flex;
  align-items: center;
}

.stories_header {
  padding-top: 10px;
  padding-right: 10px;
  padding-left: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  font-weight: bold;
  color: lightgray;
  cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

/* Modal Styles */
.discard-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 20000005;
}

.modalcontent {
  display: flex;
  flex-direction: column;
  /* This arranges the items vertically */
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  width: 300px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.discard-button {
  display: flex;
  background-color: red;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.keep-button {
  display: flex;
  background-color: black;
  color: hsl(120, 100%, 50%);
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.add-photo-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  position: relative;
  bottom: 20;
}

.photo-upload-container {
  border: none;
  padding: 20px;
  border-radius: 35px;
  cursor: pointer;
  position: relative;
  margin-top: 100px;
}

.photo-upload-label {
  font-size: 16px;
  color: #0095f6;
  cursor: pointer;
}

.photo-upload-label i {
  font-size: 24px;
}

/*#photo-preview {
            overflow: visible !important;
            position: relative !important;
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            position: relative;
            display: inline-block;
        }

        .photo-container {
            position: relative;
            display: inline-flex;
            justify-content: flex-start;
            align-items: flex-start;
            bottom: 15;
        }

        .modal-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            z-index: 1;
            height: 100vh;
            background-color: #000;
        }

        .preview {
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .modalcontent .close {
            float: right;
            font-size: 28px;
            cursor: pointer;
        }

        .text-button {
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 10px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 10px;
            left: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .text-button:hover {
            background-color: #145ca8;
        }

        .paintbush-button {
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 10px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 10px;
            left: 50px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .paintbush-button:hover {
            background-color: #145ca8;
        }

        .dots-button {
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 10px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            position: absolute;
            bottom: 10px;
            left: 100px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .dots-button:hover {
            background-color: #145ca8;
        }

        .undo-button {
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 10px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            position: absolute;
            bottom: 10px;
            left: 150px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .undo-button:hover {
            background-color: #145ca8;
        }

        .redo-button {
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 50%;
            padding: 10px;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            position: absolute;
            bottom: 10px;
            left: 190px;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            transition: background-color 0.3s ease;
        }

        .redo-button:hover {
            background-color: #145ca8;
        }

        .sublist {
            display: none;
            position: absolute;
            left: 120;
            bottom: 50;
            background-color: white;
            border: 1px solid #0095f6;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            margin-top: 5px;
        }

        .sublist-item {
            padding: 10px;
            border: none;
            background: none;
            color: #0095f6;
            border-radius: 10px;
            text-align: left;
            width: 100%;
            cursor: pointer;
        }

        .sublist-item:hover {
            background-color: #f0f0f0;
        }

        .back-button {
            position: absolute;
            display: flex;
            bottom: 10px;
            right: 70px;
            padding: 8px 16px;
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            font-size: 14px;
        }

        .back-button:hover {
            background-color: #155a9b;
        }

        .next-button {
            position: absolute;
            display: flex;
            bottom: 10px;
            right: 10px;
            padding: 8px 16px;
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            font-size: 14px;
        }

        .next-button:hover {
            background-color: #155a9b;
        }

        .submit-button {
            position: absolute;
            display: flex;
            bottom: 10px;
            right: 10px;
            padding: 8px 16px;
            background-color: #0095f6;
            color: white;
            border: none;
            border-radius: 35px;
            cursor: pointer;
            font-size: 14px;
        }

        .submit-button:hover {
            background-color: #155a9b;
        }*/

.search-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.search-container form {
  margin: 0 auto;
  /* Center the container */
}

form {
  position: relative;
  /* Allows the button to be positioned inside the form */
  display: flex;
  justify-content: center;
  align-items: center;
  /* Center elements vertically */
  width: 90%;
  flex-direction: column;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  /* Normal padding */
  padding-right: 30px;
  /* Extra right padding for the button space */
  font-size: 24px;
  border: 2px solid black;
  border-radius: 35px;
  outline: none;
  box-sizing: border-box;
  /* Ensures padding doesn't affect input size */
  flex: 1;
  /* Takes up remaining space */
  margin: 0 auto;
  /* Center the input */
  margin-top: 60px;
  /* Offset to account for header height */
  /* wrap: break-word; */
}

.hidden-buttons {
  display: none !important;
}

.clicked {
  background-color: black;
  color: white;
  /* Optional: ensure text/icon remains visible */
}

/* When a button has the 'clicked' class, disable hover effect */
.clicked:hover {
  background-color: black;
  /* Disable the hover background color change */
  color: white;
  /* Optionally, keep the text color unchanged */
  transform: none;
  /* Disable hover scale effect if you have one */
}

.adjustnumber {
  color: black;
  border: none;
  background-color: inherit;
}

.resetBtn {
  color: #2e86c1;
  border: none;
  background-color: inherit;
}

.filterbuttons {
  border: none;
  background-color: inherit;
  margin-bottom: 5px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

/* Style the black slider track */
.filterSlider {
  -webkit-appearance: none;
  /* Removes default browser styling */
  appearance: none;
  transition: background 0.2s ease;
  /* Smooth transition for background changes */
  position: relative;
  flex-direction: column;
  margin: 10px auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4px;
  /* Set the height of the track */
  background: #2e86c1;
  /* Set the track color (darker baby blue) */
  border-radius: 5px;
  /* Rounded track edges */
  outline: none;
  /* Remove the focus outline */
  opacity: 0.9;
  /* Slightly transparent */
}

/* Change opacity on hover */
.filterSlider:hover {
  opacity: 1;
}

/* Style the slider thumb (the draggable circle) */
.filterSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Removes default browser styling */
  appearance: none;
  width: 7px;
  /* Width of the thumb */
  height: 20px;
  /* Height of the thumb */
  border-radius: 2px;
  /* Makes the thumb a circle */
  background: black;
  /* Darker blue for contrast */
  cursor: pointer;
  /* Changes cursor to a pointer */
}

.filterSlider::-moz-range-thumb {
  /* Styling for Firefox */
  width: 5px;
  height: 20px;
  border-radius: 2px;
  background: #1b4f72;
  cursor: pointer;
}

/* Style the black slider track */
.filterSliderTemp {
  -webkit-appearance: none;
  /* Removes default browser styling */
  appearance: none;
  transition: background 0.2s ease;
  /* Smooth transition for background changes */
  position: relative;
  z-index: 4000;
  flex-direction: column;
  margin: 10px auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 4px;
  /* Set the height of the track */
  background: #2e86c1;
  /* Set the track color (darker baby blue) */
  border-radius: 5px;
  /* Rounded track edges */
  outline: none;
  /* Remove the focus outline */
  opacity: 0.9;
  /* Slightly transparent */
}

/* Change opacity on hover */
.filterSliderTemp:hover {
  opacity: 1;
}

/* Style the slider thumb (the draggable circle) */
.filterSliderTemp::-webkit-slider-thumb {
  -webkit-appearance: none;
  /* Removes default browser styling */
  appearance: none;
  width: 7px;
  /* Width of the thumb */
  height: 20px;
  /* Height of the thumb */
  border-radius: 2px;
  /* Makes the thumb a circle */
  background: black;
  /* Darker blue for contrast */
  cursor: pointer;
  /* Changes cursor to a pointer */
}

.filterSliderTemp::-moz-range-thumb {
  /* Styling for Firefox */
  width: 5px;
  height: 20px;
  border-radius: 2px;
  background: #1b4f72;
  cursor: pointer;
}

/* Filter buttons */
.filters-button {
  border: none;
  font-size: 17px;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: inherit;
  color: black;
  margin: 5px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.filters-button:hover {
  text-decoration: underline;
  /* Adds an underline */
  text-decoration-color: black;
  /* Makes the underline black */
  text-decoration-thickness: 2px;
  /* Controls the thickness of the underline */
  text-underline-offset: 4px;
  /* Adjusts the distance between the text and the underline */
}

/* adjustments buttons */
.adjustments-button {
  border: none;
  font-size: 17px;
  padding: 8px 12px;
  border-radius: 5px;
  background-color: inherit;
  color: black;
  margin: 5px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease;
}

.adjustments-button:hover {
  text-decoration: underline;
  /* Adds an underline */
  text-decoration-color: black;
  /* Makes the underline black */
  text-decoration-thickness: 2px;
  /* Controls the thickness of the underline */
  text-underline-offset: 4px;
  /* Adjusts the distance between the text and the underline */
}

/* Styling for the selected button */
.selected {
  color: black;
  /* You can adjust the color if needed */
  text-decoration: underline;
  /* Adds an underline */
  text-decoration-color: black;
  /* Makes the underline black */
  text-decoration-thickness: 2px;
  /* Controls the thickness of the underline */
  text-underline-offset: 4px;
  /* Adjusts the distance between the text and the underline */
}

.filter_button {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 33%;
  /* Takes up almost half the container width to fit two per row */
  max-width: 120px;
  /* Optionally, set a maximum width for smaller screens */
  width: 60px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.filter_button span {
  color: #333;
  font-weight: bold;
}

/* Style for the filter preview box */
.filter-preview {
  width: 50px;
  height: 50px;
  background-color: #ccc;
  /* Background color to help make filters visible */
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
}

/* Style for the filter preview image */
.filter-sample {
  width: 100%;
  /* Makes the image fit the preview box */
  height: 100%;
  object-fit: cover;
  /* Ensures the image fills the preview box proportionally */
  border-radius: 8px;
  /* Optional: matches the preview box shape */
}

/* General container styling */
#collaborator-container {
  display: flex;
  flex-direction: row;
  padding: 20px;
  border-radius: 8px;
  margin-top: 20px;
}

.collaborator-labels {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.collaborator-inputs {
  display: flex;
  flex-direction: column;
  padding: none;
  border-radius: 4px;
  width: 90%;
  margin: 0;
  gap: 10px;
}

/* Text input styling */
.collaborator-input {
  display: inline-block;
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  min-height: 40px;
  /* Ensure space for added spans */
}

div#collaborator-container input.collaborator-input:focus {
  border: 1px solid #0095f6 !important;
  outline: none;
  /* Optional: Remove default outline */
}

/* Label for the radio buttons */
.share-label,
.duration-label,
.collaborator-label {
  display: block;
  font-weight: bold;
}

/* Radio button and label styling */
.radio-option {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
}

.radio-option input[type="radio"] {
  margin-right: 8px;
}

.radio-row {
  display: flex;
  flex-direction: row;
}

.cropper-container {
  width: 100% !important;
  overflow: hidden;
}

.cropper-bg {
  width: 100% !important;
}

.text-box {
  position: absolute !important;
  outline: none;
  padding: 5px;
  min-width: 100px;
  min-height: 20px;
  background-color: inherit;
  border: none;
  overflow: hidden !important;
  /* Hides the scrollbars */
  resize: none;
  /* Disable resizing */
  pointer-events: auto;
  line-height: 1.5;
  /* Adjust as needed */
}

.resize-handle {
  pointer-events: auto;
}

i {
  margin: 0;
  padding: 0;
}

.list-box {
  margin: 0;
  padding: 5px;
  font-size: 14px;
  line-height: 1.5;
  background-color: #f9f9f9;
  /* Light background */
  border-radius: 5px;
  /* Rounded corners */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  /* Subtle shadow */
  resize: none;
}

.list-box-wrapper {
  position: absolute;
  display: flex;
  /* Align items horizontally */
  align-items: center;
  /* Vertically center the icon and text box */
}

i.fas.fa-grin-stars {
  font-size: 24px;
  color: #0095f6;
  visibility: visible;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
}

.user-name {
  margin-top: 15px;
  font-weight: bold;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
  /* Centers the text horizontally */
}

.AboutUscontainer {
  position: relative;
  margin: 0 auto;
  margin-top: 50;
  margin-bottom: 300;
  padding: 20px;
  align-items: center;
}

.mission-image-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.mission-image {
  width: 60%;
  height: auto;
}

#read-more {
  color: black;
  /* Example: blue color for link */
  cursor: pointer;
  /* Makes the element look clickable */
}

.WhyRatingcontainer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.top-image {
  width: 100%;
  height: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.mission-image-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.mission-image {
  width: 60%;
  height: auto;
}

#read-more {
  color: black;
  /* Example: blue color for link */
  cursor: pointer;
  /* Makes the element look clickable */
}

.white-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically */
  align-items: center;
  /* Center content horizontally */
  text-align: center;
}

.WhatRoommatecontainer {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  align-items: center;
}

.mission-image-container {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.mission-image {
  width: 60%;
  height: auto;
}

#read-more {
  color: black;
  /* Example: blue color for link */
  cursor: pointer;
  /* Makes the element look clickable */
}

.bottom-bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 10px;
  background-color: inherit;
}

@media (max-width: 717px) {
  .bottom-bottom {
    flex-direction: column;
  }

  .social-media {
    position: relative;
    right: 0;
  }

  .footer-links {
    left: 0 !important;
  }
}

.footer-links {
  position: relative;
  font-size: 16px;
  margin-bottom: 10px;
  left: 120;
  width: auto;
  color: #212529;
}

.footer-links a {
  color: black;
  text-decoration: none;
  margin-right: 10px;
}

.footer-links a:hover {
  text-decoration: underline;
  color: blue;
}

.footer-social {
  display: flex;
  margin-bottom: 10px;
  font-size: 24px;
  gap: 10px;
}

.instagram-icon {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
}

.facebook-icon {
  background: #006cf8;
}

.twitter-icon {
  color: rgb(0, 0, 0);
}

.tiktok-icon {
  color: #000000;
  /* TikTok does not have a specific brand color, so using black for simplicity */
}

.reddit-icon {
  color: #ff4500;
}

.social-media i {
  margin-right: 20px;
  /* Adds spacing to the right of each icon */
}

.social-media a:last-child i {
  margin-right: 0;
  /* Ensures the last icon doesn't have extra spacing on its right */
}

.social_media_icon {
  width: 35px;
  height: 35px;
  font-size: 24px;
  color: white;
}

.social_media_icon_bottom_page {
  width: 25px;
  height: 25px;
  font-size: 24px;
  color: white;
}

.social_media_icon.facebook_logo_logo,
.social_media_icon_bottom_page.facebook_logo_logo {
  color: white;
  padding: 0;
  height: 40px;
  border-radius: 0%;
}

.social_media_icon.instagram_logo_logo,
.social_media_icon_bottom_page.instagram_logo_logo {
  font-size: 35px;
}

.social_media_icon.x_logo_logo,
.social_media_icon_bottom_page.x_logo_logo {
  font-size: 30px;
}

.social_media_icon.snapchat_logo_logo,
.social_media_icon_bottom_page.snapchat_logo_logo {
  background: #fffc00;
}

.social_media_icon_div_bottom_page {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 50;
  text-decoration: none; /* Remove link underline */
}

.social_media_icon_div {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.3s ease;
  z-index: 50;
  text-decoration: none; /* Remove link underline */
}

.social_media_icon_div:hover {
  transform: scale(1.1) rotate(5deg);
}

.social_media_icon_div.twitter_logo,
.social_media_icon_div_bottom_page.twitter_logo {
  background: #000000;
  color: white;
}

.social_media_icon_div.facebook_logo,
.social_media_icon_div_bottom_page.facebook_logo {
  background: #006cf8;
  color: white;
  padding: 0px;
}

.social_media_icon_div.instagram_logo,
.social_media_icon_div_bottom_page.instagram_logo {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  color: white;
}

.social_media_icon_div.snapchat_logo,
.social_media_icon_div_bottom_page.snapchat_logo {
  background: #fffc00;
  color: black;
}

.social_media_icon_div.middle_logos {
  position: relative;
  bottom: 7px;
}

.social_media_icon_div.reddit_logo,
.social_media_icon_div_bottom_page.reddit_logo {
  background: #ff4500;
}

.social_media_icon_div.x_logo,
.social_media_icon_div_bottom_page.x_logo,
.social_media_icon_div.tiktok_logo,
.social_media_icon_div_bottom_page.tiktok_logo {
  background: #000000;
}

.bigger_social_media_icon {
  width: 40px !important;
  height: 40px !important;
}

.bigger_social_media_icon_bottom_page {
  width: 30px !important;
  height: 30px !important;
}

.space_between {
  display: flex;
  justify-content: space-between;
}

/* Positioning */

.top-right,
.top-left {
  top: 140px;
  animation: float-middle 3s ease-in-out infinite;
}

.top-left {
  left: 30px;
  animation-delay: 0s;
}

.top-right {
  right: 30px;
  animation-delay: 0.5s;
}

.middle-left,
.middle-right {
  top: 360px;
  transform: translateY(-50%);
  animation: float-middle 3s ease-in-out infinite;
}

.middle-left {
  left: 10px;
  animation-delay: 1s;
}

.middle-right {
  right: 10px;
  animation-delay: 1.5s;
}

.bottom-left,
.bottom-right {
  top: 440px;
  animation: float-middle 3s ease-in-out infinite;
}

.bottom-left {
  left: 100px;
  animation-delay: 2s;
}

.bottom-right {
  right: 100px;
  animation-delay: 2.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes float-middle {
  0%,
  100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(calc(-50% - 10px));
  }
}

/*DIFFERENT SCREENS SIZES STARTS*/
/* Small devices (landscape phones) */
@media (min-width: 576px) {
  .top-left,
  .middle-left,
  .bottom-left {
    left: 20px;
  }

  .middle-left,
  .middle-right {
    top: 300px;
  }

  .top-right,
  .middle-right,
  .bottom-right {
    right: 20px;
  }

  .profile-preview {
    border-radius: 15px;
  }
}

/* Medium devices (tablets) */
@media (min-width: 768px) {
  .top-left,
  .middle-left,
  .bottom-left {
    left: 60px;
  }

  .middle-left,
  .middle-right {
    top: 300px;
  }

  .top-right,
  .middle-right,
  .bottom-right {
    right: 60px;
  }

  .RMR {
    height: 80px;
  }
}

/* Large devices (desktops) */
@media (min-width: 992px) {
  .top-left,
  .middle-left,
  .bottom-left {
    left: 100px;
  }

  .top-right,
  .middle-right,
  .bottom-right {
    right: 100px;
  }
}

/* Extra large devices (large desktops) */
@media (min-width: 1200px) {
  .top-left,
  .middle-left,
  .bottom-left {
    left: 200px;
  }

  .top-right,
  .middle-right,
  .bottom-right {
    right: 200px;
  }

  .RMR {
    height: 100px;
  }
}

/* XXL devices */
@media (min-width: 1400px) {
  .top-left,
  .middle-left,
  .bottom-left {
    left: 300px;
  }

  .top-right,
  .middle-right,
  .bottom-right {
    right: 300px;
  }
}

.resource_header {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 20px;
}

.back_button_tabs {
  padding: 6px 12px;
  cursor: pointer;
  border: none;
  max-width: 100px;
  position: relative;
  border-radius: 20px;
}
