body {
	font-family: Arial, sans-serif;
	background-color: #e9f3f4;
	margin: 0;
	padding: 0;
}

h2 {
	text-align: center;
	background-color: #1E90FF;
	color: white;
	padding: 15px 0;
margin: 0;
}

form {
	max-width: 800px;
	margin: 30px auto;
	background-color: white;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

input[type="text"],input[type="email"],select {
	width: calc(100% - 20px);
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

select {
	width: calc(100% - 18px);
}

button {
	background-color: #FFD700;
	border: none;
	padding: 10px 20px;
	color: black;
	font-weight: bold;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 10px;
}

button:hover {
	background-color: #FFC700;
}

#agregar {
	margin-left: 10px;
}

.form-group {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.form-group > div {
	flex: 1;
	min-width: 250px;
	margin-right: 15px;
}

.form-group > div:last-child {
	margin-right: 0;
}

.problem-section {
	display: flex;
	justify-content: space-between;
	margin-bottom: 15px;
}

.problem-section input {
	width: calc(25% - 10px);
	margin-right: 10px;
}

.problem-section input:last-child {
	margin-right: 0;
}

.problem-list {
	margin-top: 20px;
	padding: 0;
}

.problem-list-item {
	display: flex;
	justify-content: space-between;
	background-color: #f4f4f4;
	padding: 10px;
	border-radius: 5px;
	margin-bottom: 10px;
}

.problem-list-item span {
	flex: 1;
	margin-right: 10px;
}

.problem-list-item button {
	background-color: red;
	color: white;
	border: none;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
}