.photo-upload {
  max-width: 100px;
  text-align: center;
}

.photo-upload img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 5px;
}

.photo-upload input[type="file"] {
  display: none;
}

.photo-upload button {
  font-size: 12px;
  padding: 2px 8px;
  border: none;
  background-color: #aa0327;
  color: white;
  border-radius: 4px;
  cursor: pointer;
}

.photo-upload button:hover {
  background-color: #8a0221;
}

.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.g_id_signin {
    margin-top: 20px;
}
.rating-box {
    position: relative;
    background: #fff;
    padding: 5px 30px 15px;
    border-radius: 5px;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); */
  }
.rating-box .stars {
    display: flex;
    align-items: center;
    gap: 20px;
    }
.stars i {
    color: #e6e6e6;
    font-size: 35px;
    cursor: pointer;
    transition: color 0.2s ease;
}
/* Stars rating spacing */
.stars {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.stars i.active {
    color: #ff9c1a;
}
.file-upload {
    display: flex;
    align-items: center;
}
  #fileInput {
    flex-grow: 1;
  }
  
  #uploadButton {
    margin-left: 10px;
  }
  #message {
      font-weight: bold;
  }
.custom-upload-btn {
    background-color: #af0219;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-upload-btn:hover {
    background-color: #57242c;
}
  /* Style for the upper section header */
.section-header {
  font-weight: bold;  /* Make the text bold */
  font-size: 24px;    /* Set a larger font size for emphasis */
  margin-bottom: 20px; /* Add space between the header and content */
}

/* Style for both sections */
.upper-section, .lower-section {
  margin-bottom: 40px; /* Create space between sections */
}

/* Optional: Add a border or different background color to distinguish sections */
.upper-section {
  border-bottom: 2px solid #ccc;  /* Border for separation */
  padding-bottom: 20px;           /* Padding at the bottom of the upper section */
}
.file-upload {
  display: flex;
  align-items: center;
}
#fileInput {
  flex-grow: 1;
}

#uploadButton {
  margin-left: 10px;
}
#message {
    font-weight: bold;
}
.custom-upload-btn {
  background-color: #af0219;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
}

.custom-upload-btn:hover {
  background-color: #57242c;
}
/* Language switcher - align right on larger screens, stack on mobile */
.language-switcher {
    position: relative;
    display: flex;
    justify-content: flex-start;
    margin: 10px;
}
  
@media (max-width: 576px) {
    .language-switcher {
        justify-content: center;
}
}
  
.language-switcher button {
  background: none;
  border: none;
  cursor: pointer;
}

.language-options {
  display: none;
  position: absolute;
  background: #fff;
  border: 1px solid #ccc;
  min-width: 90px;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  text-align: left;
}

.language-options a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
}

.language-options a:hover {
  background-color: #f0f0f0;
}

.language-switcher.open .language-options {
  display: block;
}

/* .login-card {
    background: #ffffff;
    width: 360px;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.login-card .icon {
    background-color: #8e44ad;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
}

.login-card h2 {
    margin-bottom: 25px;
    color: #333;
}

.login-card input[type="text"],
.login-card input[type="email"] {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}

.login-card input[type="text"]:focus,
.login-card input[type="email"]:focus {
    border-color: #8e44ad;
    outline: none;
}

.login-card button {
    background-color: #8e44ad;
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.login-card button:hover {
    background-color: #732d91;
} */