.content {
    flex: 1;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.content-card {
    width: 100%;
    max-width: 750px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-card h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: 600;
    color: #111827;
}

.description {
    margin-top: -10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    color: #6b7280; /* gray-500 */
    max-width: 540px;
    line-height: 1.5;
}

.content-line {
    margin: 18px 0;
    font-size: 1.1rem;
}

/* Form controls */
label {
    font-weight: 500;
    margin-right: 8px;
}

.select {
    padding: 10px 42px 10px 12px;
    font-size: 1rem;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #ffffff url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") no-repeat right 12px center;
    background-size: 22px;
    appearance: none;
    cursor: pointer;
}

.dates-list {
    list-style-type: disc;
    padding-left: 30px;
}

.suitable-unsuitable-list {
    list-style-type: circle;
    padding-left: 30px;
}