.layouts-accordion {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.layouts-accordion-item {
    border-bottom: 1px solid #e0e0e0;
    animation: pulse-attention 1.5s ease-in-out infinite;
    border-radius: 4px;
    margin-bottom: 5px;
}

.layouts-accordion-item:last-child {
    border-bottom: none;
}

.layouts-accordion-item:hover {
    animation: none;
}

.layouts-accordion-item.active {
    animation: none;
}

.layouts-accordion-header {
    background: #F4F2ED;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    color: #374151;
}

.layouts-accordion-header:hover {
    background: #F4F2ED;
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}


/* @keyframes pulse-attention {
   0% { box-shadow: 0 0 0 0 rgba(180, 160, 120, 0.6); transform: scale(1); }
   50% { box-shadow: 0 0 0 10px rgba(180, 160, 120, 0); transform: scale(1.005); }
   100% { box-shadow: 0 0 0 0 rgba(180, 160, 120, 0); transform: scale(1); }
} */

.layouts-accordion-header::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s;
    margin-left: 10px;
}

.layouts-accordion-item.active .layouts-accordion-header::after {
    content: '−';
}

.layouts-accordion-body {
    display: none;
    padding: 20px;
    background: #fff;
    max-height: 500px;
    overflow-y: auto;
}

.layouts-accordion-item.active .layouts-accordion-body {
    display: block;
}

.layouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.layout-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.2s;
    text-align: center;
}

.layout-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.layout-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    padding: 0;
    margin: 0;
}

.layout-card-body {
    padding: 10px;
}

.layout-card-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px;
}

.layout-card-info {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
}

.layout-card-info strong {
    color: #333;
}

.layout-card-table {
    width: 100%;
    font-size: 14px;
    border-collapse: collapse;
}

.layout-card-table td {
    padding: 5px 8px;
    border-bottom: 1px solid #eee;
}

.layout-card-table td:first-child {
    color: #666;
    text-align: left;
}

.layout-card-table td:last-child {
    color: #333;
    font-weight: 500;
    text-align: right;
}