/* registro-style.css */

/* General layout */
body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.profile-editor {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.profile-section {
  margin-bottom: 40px;
}

.section-view,
.section-edit {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.section-edit {
  background-color: #f0f8ff;
}

.edit-btn,
.cancel-btn,
.save-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #0073aa;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.cancel-btn {
  background-color: #999;
  margin-left: 10px;
}

.edit-btn:hover,
.cancel-btn:hover,
.save-btn:hover {
  background-color: #005f8d;
}

input[type="text"],
select,
input[type="color"],
textarea {
  display: block;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.gallery-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.gallery-item img {
  max-width: 100%;
  border-radius: 4px;
}
