/* Profile page styles */
.profile-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.profile-stats {
    display: flex;
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}


/* .btn-edit {
    background-color: var(--primary);
    color: white;
}

.btn-edit:hover {
  color: var(--light);
  background-color: var(--primary-dark);
  text-decoration: underline;
} */

.btn-edit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  transition: all 0.2s ease;
}

.btn-edit:hover {
  background: var(--primary-dark);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

/* .btn-password {
    background-color: var(--pwd);
    color: var(--primary-dark);
}

.btn-password:hover {
  background-color: var(--pwd-dark);
  text-decoration: underline;
} */

.btn-password {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pwd);
  color: white;
  transition: all 0.2s ease;
}

.btn-password:hover {
  background: var(--pwd-dark);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
}

.feedback-list {
    display: grid;
    gap: 1rem;
}

.feedback-item {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.feedback-rating {
    font-weight: bold;
    color: #e67e22;
}

.feedback-meta {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.feedback-text {
    margin-top: 0.5rem;
    color: #2c3e50;
}

/* Edit forms */
.edit-profile-container,
.password-change-container {
    max-width: 500px;
    margin: 2rem auto;
    padding: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-save {
    background-color: #2ecc71;
    color: white;
    border: none;
    cursor: pointer;
}

.btn-cancel {
    background-color: #e74c3c;
    color: white;
    margin-left: 1rem;
}

.error {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}