body { 
  font-family: Arial, sans-serif; 
  margin: 20px; 
}

label { 
  display: block; 
  margin-top: 15px; 
  font-weight: bold; 
}

input, textarea { 
  width: 100%; 
  padding: 8px; 
  margin-top: 5px; 
  box-sizing: border-box; 
}

textarea { 
  resize: vertical; 
  overflow: hidden; 
}

.section { 
  margin-bottom: 30px; 
}

h2 { 
  color: #2c3e50; 
}

/* 일시 입력 필드 스타일 */
.datetime-field {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.remove-datetime-field {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ff6b6b;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-datetime-field:hover {
  background-color: #ff5252;
}

/* 예산 입력 필드 인라인 배치 */
.budget-fields {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 5px;
}

.budget-content {
  flex: 3;
}

.budget-amount {
  flex: 1;
}

.remove-budget-field {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #ff6b6b;
  color: white;
  border: none;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove-budget-field:hover {
  background-color: #ff5252;
}

/* 예산 합계 표시 */
#budget-summary {
  margin-top: 10px;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

#budget-summary label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

#total-budget {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #f9f9f9;
}