/*
 * Styles for the Stella Yedia Size Chart plugin.
 */
.sy-toggle-container {
    border-bottom: 1px solid #ccc;
    margin-bottom: 15px;
}

.sy-toggle-button {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 15px 0;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    transition: color 0.2s ease;
}

.sy-toggle-button:hover {
    color: #333;
}

.sy-toggle-button:active {
    color: #7d7c7c;
}

.sy-toggle-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
    line-height: 1;
}

.sy-toggle-button[aria-expanded="true"] .sy-toggle-icon {
    transform: rotate(45deg);
}

.sy-toggle-content {
    padding-bottom: 20px;
    line-height: 1.6;
    color: #555;
    font-size: 1em;
}

.sy-toggle-content[hidden] {
    display: none;
}

.sy-size-chart-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sy-toggle-content p {
    margin-bottom: 1em;
}