/**
 * Gender Selection Page Styles
 *
 * @author    Fhoto Click
 * @copyright Fhoto Click
 */

.gender-selection-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Main Content Section */
.gender-content {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* .gender-container {
  background-color: #ffffff;
  padding: 60px 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} */

.gender-title {
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  text-align: center;
  margin: 0 0 50px 0;
}

/* Gender Options */
.gender-options {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.gender-option {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 20px;
}

.gender-option:hover {
  transform: translateY(-5px);
  background-color: #f9f9f9;
}

.gender-option.selected {
  background-color: var(--theme-selected-bg, #e8f4f8);
  border: 2px solid var(--theme-color, #4a90e2);
}

.gender-icon-wrapper {
  width: 150px;
  height: 150px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gender-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gender-icon-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
}

.gender-name {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-top: 10px;
}

/* Actions Section */
.gender-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 20px;
}

.btn-continue {
  background-color: var(--theme-color, #4a90e2);
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-continue:hover:not(:disabled) {
  background-color: var(--theme-hover-color, #357abd);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-continue:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
  .gender-container {
    padding: 40px 20px;
  }

  .gender-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .gender-options {
    gap: 20px;
    margin-bottom: 40px;
  }

  .gender-icon-wrapper {
    width: 120px;
    height: 120px;
  }

  .gender-name {
    font-size: 16px;
  }

  .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .user-section {
    text-align: left;
    width: 100%;
  }

  .gender-actions {
    justify-content: center;
  }

  .btn-continue {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .gender-options {
    flex-direction: column;
    align-items: center;
  }

  .gender-option {
    width: 100%;
    max-width: 200px;
  }
}

