body {
  font-family: Open Sans;
  color: white;
  background-color: black;
  margin: 0;
  padding: 0;
}

.header {
  text-align: center;
  padding: 20px 0;
}

/* Everything from username to About Us */
.full-width-box {
  width: 100%;
  box-sizing: border-box;
  background-color: black;
  padding: 10px 20px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: black;
}

/* LEFT PANEL */
.left-panel {
  display: flex;
  align-items: center;
}

/* User ID box */
.user-dropdown {
  position: relative;
}

/* User ID box */
.user-info {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: white;
  padding: 6px 10px;
  border: 1px solid black;
  border-radius: 4px;
  background-color: black;
  transition: background-color 0.3s, border-color 0.3s;
}

.user-info:hover {
  background-color: #0B0B2E;
  border-color: #0B0B2E;
}

.user-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.arrow {
  font-size: 12px;
  margin-left: 2px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: black;
  color: white;
  border: 1px solid black;
  border-radius: 4px;
  min-width: 160px;
  padding: 0px 10px;
  z-index: 10;
}

.user-dropdown:hover .dropdown-content {
  display: block;
}

/* RIGHT PANEL */
.right-panel {
  flex: 1;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-left: 360px;
  margin-right: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid black;
  border-radius: 4px;
  background-color: black;
  transition: background-color 0.3s, border-color 0.3s;
}

.nav-links a:hover {
  background-color: #0B0B2E;
  border-color: #0B0B2E;
  color: white;
}

/* ----------------------------------------------- */

.left-sidebar {
  position: absolute; /* Starts exactly where it was before */
  top: 235px;
  left: 0px;
  width: 150px;
  height: 100vh; /* Takes up the height of the page */
  background-color: #0B0B2E;
  color: white;
  padding: 20px;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  z-index: 1000;

  /* Condition A: No scroll ability or visible scroller */
  overflow: hidden;
}

/* This class will be toggled by the script below */
.sidebar-fixed {
  position: fixed !important;
  top: 0 !important;
}

.left-sidebar h2 {
  margin-top: 0;
  color: White;
  font-size: 18px;
}

.left-sidebar ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.left-sidebar ul li {
  margin-bottom: 30px;
}

.left-sidebar ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.left-sidebar ul li a:hover {
  color: #60ABEB;
}

/* ------------------------------------------- */

/* SHARED HEADER STYLE FOR ALL SECTIONS */


.contactus-header, .section-header {
  margin-left: 0px;
  margin-top: 40px;
  width: 1320px;
  border-radius: 0px 10px 10px 0px;
  border: 1px solid #0B0B2E;
  background-color: #0B0B2E;
}

.contactus-header {
  margin-top: 50px;
}

.contactus-header h2, .section-header h2 {
  margin-left: 240px;
  font-size: 30px;
  color: white;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ------------------------------------------- */
/* CUSTOMER SUPPORT SECTION STYLES */
/* ------------------------------------------- */

.support-header {
  margin-top: 50px;
}

.support-container {
    margin-left: 250px;
    margin-top: 40px;
    width: 1050px;
}

.section-content-wrapper {
  display: flex;
  gap: 30px;
}

.support-form {
    background-color: #0B0B2E;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #0B0B2E;
    width: 600px;
    box-sizing: border-box;
}

.support-info-box {
    background-color: #0B0B2E;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #0B0B2E;
    width: 420px;
    box-sizing: border-box;
    min-height: 480px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 16px;
    color: #FFFFFF;
}

/* CHECKBOX GROUP STYLING - LEFT ALIGNED */
.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start; /* Forces content to the far left */
    width: 100%;
    text-align: left;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 10px;
    margin-left: 0px;
    width: 16px;
    height: 16px;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* INPUTS */
.support-form input[type="text"],
.support-form input[type="email"],
.support-form textarea,
.review-box input[type="text"],
.review-box textarea {
    background-color: black;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-family: Open Sans;
    font-size: 14px;
    outline: none;
}

.support-form input:focus,
.support-form textarea:focus,
.review-box input[type="text"]:focus,
.review-box textarea:focus {
    border-color: #60ABEB;
}

.submit-btn {
    background-color: black;
    color: white;
    border: 1px solid white;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: Open Sans;
    transition: all 0.3s;
}

.submit-btn:hover {
    background-color: white;
    color: black;
}

/* ------------------------------------------- */
/* CONTACT US ROW STYLES (UPDATED FOR ALIGNMENT) */
/* ------------------------------------------- */

.contactus-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between; /* This spaces them evenly and aligns edges */
  margin-left: 250px;
  margin-top: 40px;
  width: 1050px; /* Matches the width of the Support and Review containers */
}

.customer-service,
.instagram,
.tiktok,
.gmail {
  width: 200px;
  height: 150px;
  background-color: #0B0B2E;
  border-radius: 10px;
  border-color: #0B0B2E;
  text-align: center;
}

.customer-service img,
.instagram img,
.tiktok img,
.gmail img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.gmail h3 {
  margin-bottom: -10px;
}

.gmail-acc {
  margin-top: -15px;
}

.gmail img {
  margin-top: -10px;
}

.customer-service:hover,
.instagram:hover,
.tiktok:hover,
.gmail:hover {
  transform: scale(0.98);
  cursor: pointer;
  background-color: #101057;
}

.customer-service:active,
.instagram:active,
.tiktok:active,
.gmail:active {
  transform: scale(0.95);
  cursor: pointer;
}

/* ------------------------------------------- */
/* REVIEW SECTION STYLES */
/* ------------------------------------------- */

.review-container {
    margin-left: 250px;
    margin-top: 40px;
    width: 1050px;
}

.review-box {
    background-color: #0B0B2E;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #0B0B2E;
    width: 600px;
    box-sizing: border-box;
}

.review-info-box {
    background-color: #0B0B2E;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #0B0B2E;
    width: 420px;
    box-sizing: border-box;
    min-height: 400px;
}


.review-box input[type="text"],
.review-box textarea {
    background-color: black;
    border: 1px solid #333;
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-family: Open Sans;
    font-size: 14px;
    outline: none;
}

.review-box input[type="text"]:focus,
.review-box textarea:focus {
    border-color: #60ABEB;
}

.star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 30px;
    color: #444;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0 2px;
}

.star-rating label:hover,
.star-rating label:hover ~ label,
.star-rating input:checked ~ label {
    color: #FFD700;
}

.review-info-box p{
  color: white;
  font-size: 32px;
  padding: 0px;
}

/* ABOUT US SECTION STYLES */
/* ------------------------------------------- */

.aboutus-container {
    margin-left: 250px;
    margin-top: 40px;
    width: 800px;
    min-height: 200px;
    background-color: #0B0B2E;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 50px;
}