/* Profile Form Styles */
.profile-form-content {
  background: white;
  padding: 30px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 150px;
  margin-top: 30px;
}

.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e4ea;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  font-weight: 600;
}

.profile-info h3 {
  margin: 0;
  font-size: 20px;
  color: #1f2328;
}

.profile-info p {
  margin: 5px 0 0 0;
  color: #80868b;
  font-size: 14px;
}



.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2328;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #e0e4ea;
  border-radius: 8px;
  font-size: 14px;
  background: #f8f9fa;
}

.profile-form input:disabled,
.profile-form select:disabled {
  background: #f8f9fa !important;
  cursor: not-allowed;
  color: #80868b;
}

.profile-form input:not(:disabled),
.profile-form select:not(:disabled) {
  background: #ffffff !important;
}

.email-section {
  margin-top: 30px;
}

.email-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2328;
  margin-bottom: 15px;
}

.email-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f0f4ff;
  border-radius: 8px;
  margin-bottom: 10px;
}

.email-icon {
  width: 32px;
  height: 32px;
  background: #4285f4;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.email-info {
  flex: 1;
}

.email-info div:first-child {
  font-size: 14px;
  font-weight: 500;
  color: #1f2328;
}

.email-info div:last-child {
  font-size: 12px;
  color: #80868b;
}

.email-section button {
  background: none;
  border: none;
  color: #4285f4;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 0;
}

.email-section button:hover {
  text-decoration: underline;
}



/* Status Messages */
.profile-status {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
}

.alert-success {
  background: #d1e7dd;
  border: 1px solid #badbcc;
  color: #0f5132;
}

.alert-danger {
  background: #f8d7da;
  border: 1px solid #f5c2c7;
  color: #842029;
}

.alert-warning {
  background: #fff3cd;
  border: 1px solid #ffecb5;
  color: #664d03;
}

.alert-info {
  background: #d1ecf1;
  border: 1px solid #b6effb;
  color: #055160;
}



/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .profile-header {
    flex-direction: column;
    text-align: center;
  }
  
  .profile-form-content {
    padding: 20px;
    margin-bottom: 50px;
  }
}