/* ============================================
   SETTINGS PAGE STYLES
   ============================================ */

.settings-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  max-width: 100%;
}

.settings-section {
  max-width: 100%;
  height: fit-content;
}

/* Settings Form */
.settings-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row-double {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-group label {
  font-size: 10px;
  font-weight: 500;
  color: #888;
  margin-bottom: 0;
}

.form-control {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: #333;
  background: #fff;
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: #E91E63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-control::placeholder {
  color: #999;
}

select.form-control {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}

textarea.form-control {
  resize: vertical;
  min-height: 58px;
  line-height: 1.4;
}

/* Phone Input */
.phone-input {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background: #fff;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.phone-input:focus-within {
  border-color: #E91E63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

/* Country Code Static Display */
.country-code-static {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: #f8f9fa;
  border-right: 1px solid #e0e0e0;
  min-width: 60px;
}

.country-code-static .code {
  font-size: 11px;
  font-weight: 600;
  color: #495057;
  font-family: 'Inter', sans-serif;
}

.phone-input .form-control {
  border: none;
  border-radius: 0 6px 6px 0;
  padding-left: 12px;
  box-shadow: none;
  flex: 1;
}

.phone-input .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

/* Submit Button */
.btn-submit {
  padding: 9px 22px;
  background: #E91E63;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  align-self: flex-end;
  width: 100%;
}

.btn-submit:hover {
  background: #C2185B;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
}

.btn-submit:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row-double {
    grid-template-columns: 1fr;
  }

  .btn-submit {
    width: 100%;
  }
}
