/* Example styles */
.pregnancy-week-calculator-field {
    background-color: #f4f4f4;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Styling for the results container */
.pregnancy-week-calculator-results {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.pregnancy-week-calculator-field {
    flex: 1 1 calc(50% - 20px); /* Two columns */
}

/* For small screens, make it one column */
@media (max-width: 768px) {
    .pregnancy-week-calculator-field {
        flex: 1 1 100%;
    }
}

.pregnancy-week-calculator-field h2 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
}

.pregnancy-week-calculator-field p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Custom styles for the pregnancy week result */
.pregnancy-week-result {
    font-size: 24px;
    color: #333;
    background-color: #f8f8f8;
    padding: 10px;
    margin-top: 20px;
    border-radius: 5px;
}
