body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    margin: 0;
    padding: 0;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    width: 30%;
    background-color: #833f04;
    color: white;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.checkboxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.checkboxes label {
    display: flex;
    align-items: center;
    font-size: 20px;
}

button {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: #ff4500;
    color: white;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    width: 100%;
    font-size: 20px;
}

button:hover {
    background-color: #cc3700;
}

.content {
    flex: 1;
    background-color: #e0c3a3;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.images {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.images img {
    display: none;
    width: 300px;
    margin-top: 20px;
}

.mensaje {
    font-size: 20px;
    font-weight: bold;
    color: red;
    margin-top: 15px;
}

.sidebar h2 {
    color: red;
    background-color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
