.profile-page {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.profile-container {
  width: 100%;
  max-width: 800px;
}

.profile-header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 40px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(78, 201, 176, 0.1);
  border-radius: 20px;
  margin-bottom: 30px;
}

.profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(78, 201, 176, 0.3);
  margin-bottom: 15px;
}

.profile-username {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px;
}

.profile-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: #4ec9b0;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.profile-posts-title {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(78, 201, 176, 0.2);
}

.profile-empty {
  text-align: center;
  padding: 40px;
  background: rgba(20, 20, 20, 0.5);
  border-radius: 16px;
}
.profile-empty p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 15px;
}

.profile-create-btn {
  display: inline-block;
  padding: 10px 24px;
  background: #4ec9b0;
  color: #000;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.profile-create-btn:hover {
  box-shadow: 0 5px 20px rgba(78, 201, 176, 0.3);
}

.profile-posts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-post-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(78, 201, 176, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.profile-post-item:hover {
  border-color: rgba(78, 201, 176, 0.2);
  background: rgba(20, 20, 20, 0.8);
}

.profile-post-info {
  flex: 1;
  min-width: 0;
}

.profile-post-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.profile-post-title:hover {
  color: #4ec9b0;
}

.profile-post-meta {
  display: flex;
  gap: 15px;
}
.profile-post-meta span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.profile-post-actions {
  display: flex;
  gap: 10px;
  margin-left: 15px;
}

.profile-action-edit,
.profile-action-delete {
  padding: 8px 12px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.profile-action-edit:hover,
.profile-action-delete:hover {
  background: rgba(255, 255, 255, 0.05);
}

.profile-action-delete:hover {
  background: rgba(255, 54, 54, 0.1);
  border-color: rgba(255, 54, 54, 0.3);
}

.profile-joined {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
  margin: 0 0 15px;
}

.profile-edit-link {
  padding: 8px 20px;
  background: rgba(78, 201, 176, 0.1);
  border: 1px solid rgba(78, 201, 176, 0.3);
  border-radius: 8px;
  color: #4ec9b0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.profile-edit-link:hover {
  background: rgba(78, 201, 176, 0.2);
}

.profile-post-link {
  text-decoration: none;
  color: inherit;
}
.profile-post-link:hover {
  border-color: rgba(78, 201, 176, 0.3) !important;
}

.profile-post-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 20px;
  transition: transform 0.3s ease;
}

.profile-post-link:hover .profile-post-arrow {
  transform: translateX(5px);
  color: #4ec9b0;
}

.profile-flash {
  text-align: center;
  padding: 12px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
  animation: errorSlide 0.4s ease-out;
}

.profile-flash-error {
  background: rgba(255, 54, 54, 0.12);
  border: 1px solid rgba(255, 54, 54, 0.25);
  color: #ff6b6b;
}

.profile-flash-success {
  background: rgba(42, 166, 49, 0.12);
  border: 1px solid rgba(42, 166, 49, 0.25);
  color: #4ec96b;
}

.profile-avatar-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(78, 201, 176, 0.3);
  -o-object-fit: cover;
     object-fit: cover;
}

.profile-avatar-edit {
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(78, 201, 176, 0.4);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.profile-avatar-edit:hover {
  background: #4ec9b0;
  border-color: #4ec9b0;
  color: #000;
}

.profile-avatar-form {
  display: none;
}/*# sourceMappingURL=profile.css.map */