/* Add this CSS to your CSS/stylesParkRules.css file */

/* Basic styling for the main content area */
.contenedor__principal {
    padding: 2rem 0; /* Add some padding above and below the main content */
}

.entrada-blog {
    background-color: #fff; /* White background for the content box */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.entrada-blog h2 {
    text-align: center; /* Center the main title */
    margin-bottom: 2rem;
    color: #333;
}

.entrada-blog section {
    margin-bottom: 2rem; /* Space between sections */
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee; /* Separator line between sections */
}

.entrada-blog section:last-child {
    border-bottom: none; /* No border after the last section */
    padding-bottom: 0;
}

.entrada-blog h3 {
    margin-top: 0; /* Remove top margin if it's the first element in a section */
    margin-bottom: 1rem;
    color: #555;
}

.entrada-blog p {
    margin-bottom: 1rem;
    line-height: 1.8; /* Improve readability */
    color: #666;
}

/* Styling for the Lessee Information Form */
.lessee-form-section h3 {
    margin-bottom: 1.5rem;
}

.lessee-form-section .lessee-block {
    margin-bottom: 2rem; /* Space between lessee blocks */
    padding: 1.5rem;
    border: 1px solid #ddd; /* Border around each lessee block */
    border-radius: 4px;
    background-color: #f9f9f9; /* Slightly different background */
}

.lessee-form-section .lessee-block h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

/* Reuse input-box and column styles from the application form if available */
/* Assuming you have styles like the following in your main CSS or add them here */
.lessee-form-section .column {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 1.5rem;
}

.lessee-form-section .input-box {
    flex: 1 1 calc(50% - 10px); /* Two columns by default */
    min-width: 250px; /* Minimum width before stacking */
    display: flex;
    flex-direction: column; /* Stack label and input vertically */
}

@media (max-width: 600px) {
    .lessee-form-section .column .input-box {
        flex: 1 1 100%; /* Stack inputs on smaller screens */
    }
}


.lessee-form-section .input-box label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.lessee-form-section .input-box input[type="text"],
.lessee-form-section .input-box input[type="email"],
.lessee-form-section .input-box input[type="tel"],
.lessee-form-section .input-box input[type="date"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
    font-size: 1rem;
}

.lessee-form-section button[type="submit"] {
    display: block;
    width: 100%;
    padding: 15px;
    background-color: #007bff; /* A blue color for the submit button */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 2rem;
}

.lessee-form-section button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* You may need to adjust styles for .centrar-texto, .no-margin, .sombra if they conflict */