.profile-container {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.profile-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.profile-header__icon {
  background-color: #f3f4f6;
  border-radius: 50%;
  padding: 12px;
  margin-right: 16px;
}

.profile-header__title {
  font-size: 24px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.profile-header__subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 4px 0 0 0;
}

.profile-form {
  background: #ffffff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.form-select {
  width: 100%;
  padding: 10px 12px;
  font-size: 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #ffffff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn--primary {
  background-color: #1f2937;
  color: #ffffff;
  border: none;
}

.btn--primary:hover {
  background-color: #111827;
}

.btn .icon {
  margin-right: 8px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  color: #374151;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
}

.back-link:hover {
  color: #111827;
}

.back-link .icon {
  margin-right: 8px;
}

.storage-usage {
  margin: 24px 0 32px;
}

.storage-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.storage-header h3 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0;
}

.storage-limit {
  font-size: 14px;
  color: #666;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background-color: #e1e3e1;
}

.progress-fill {
  height: 4px;
  background-color: #0b57d0 !important;
  border-radius: 5px;
  transition: width 0.3s ease;
}