.pymvizh-attributes-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pymvizh-attributes-title-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.pymvizh-title-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    margin-left: 10px;
}

.pymvizh-attributes-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.pymvizh-attributes-list {
    display: inline-flex;
    flex-direction: column;
    gap: 10px;
}

.pymvizh-attribute-item {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    transform-origin: top;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.pymvizh-attribute-item.pymvizh-hidden {
    display: none;
    transform: scaleY(0);
    opacity: 0;
}

.pymvizh-attributes-list.is-expanded .pymvizh-attribute-item.pymvizh-hidden {
    display: flex;
    transform: scaleY(1);
    opacity: 1;
}

.pymvizh-attribute-icon {
    width: 10px;
    height: 10px;
    background-color: #007bff;
    border-radius: 50%;
    margin-left: 10px;
}

.pymvizh-attribute-content {
    display: flex;
    column-gap: 10px;
    flex-grow: 1;
}

.pymvizh-attribute-name {
    font-weight: bold;
    color: #555;
}

.pymvizh-attribute-value {
    color: #333;
}

.pymvizh-buttons-wrapper {
    margin-top: 15px;
    position: relative;
}

.pymvizh-more-button,
.pymvizh-less-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}