.mypage-container {
  padding-top:100px;
  max-width: 600px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px;
}

.mypage-container h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #1da1f2;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 8px;
}

.user-infomation div {
  margin-left:20px;
  text-align: left;
  margin-bottom: 8px;
  font-size: 16px;
}

.edit-btn {
  display:block;
  margin-left: auto;
  margin-top: 12px;
  padding: 8px 16px;
  background-color: #1da1f2;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
}

.edit-btn:hover {
  background-color: #0d8ddb;
}

.section {
  margin-top: 24px;
}

.section h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #555;
}

.list {
  list-style: none;
  padding-left: 0;
}

.list li {
  background-color: #f0f4f8;
  padding: 10px 14px;
  margin-bottom: 8px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s;
}

.list li:hover {
  background-color: #e2e8f0;
}

.list li .action-group {
  display: flex;
  gap: 8px;
}

.action-btn {
  padding: 6px 12px;
  font-size: 13px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.approve {
  background-color: #4caf50;
  color: white;
}

.reject {
  background-color: #f44336;
  color: white;
}

.action-btn:hover {
  opacity: 0.85;
}

.list li a {
  text-decoration: none;
  color: #1da1f2;
  display: block;
}

.list li a:hover {
  text-decoration: underline;
}
