.female-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.female-result {
    margin-top: 1.5rem;
}

.female-main {
    padding: 1.4rem;
    text-align: center;
    background: #fdf2f8;
    border: 1px solid #fbcfe8;
    border-radius: 12px;
}

.female-main-label {
    color: #db2777;
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
}

.female-main-value {
    font-size: 2rem;
    font-weight: 700;
    color: #be185d;
}

.female-main-badge {
    margin-top: 0.5rem;
    font-weight: 600;
    color: #831843;
}

.female-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.female-item {
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

.female-item span {
    display: block;
    margin-bottom: 0.45rem;
    color: #64748b;
    font-size: 0.9rem;
}

.female-item strong {
    color: #0f172a;
}

.female-advice {
    margin-top: 1rem;
    padding: 1rem 1.1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    color: #475569;
    line-height: 1.8;
}

.female-article p {
    margin: 0 0 1rem;
    color: #4b5563;
    line-height: 1.9;
}

.female-table-wrap {
    margin-top: 1.25rem;
    overflow-x: auto;
}

.female-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.female-table th,
.female-table td {
    padding: 0.9rem 1rem;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.female-table th {
    background: #fdf2f8;
    color: #831843;
}

.female-table td {
    color: #475569;
}

.female-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 640px) {
    .female-form,
    .female-grid {
        grid-template-columns: 1fr;
    }

    .female-main-value {
        font-size: 1.5rem;
    }
}
