.dynamic-pages-container {
        padding: 15px;
        margin: 20px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    .dynamic-pages-title {
        color: #2d3436;
        text-align: center;
        margin-bottom: 20px;
        font-size: 18px;
        border-bottom: 2px solid #636e72;
        padding-bottom: 10px;
    }
    .dynamic-pages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    .dynamic-page-card {
        background: white;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 1px solid #dfe6e9;
    }
    .dynamic-page-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: #636e72;
    }
    .dynamic-page-icon {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .dynamic-page-name {
        color: #2d3436;
        font-size: 14px;
        font-weight: 500;
    }
    .dynamic-page-link {
        text-decoration: none;
        display: block;
    }
    .dynamic-pages-title-mobile {
        color: #2d3436;
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #b2bec3;
    }
    .dynamic-pages-list-mobile {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .dynamic-page-item-mobile {
        background: white;
        border-radius: 8px;
        padding: 12px;
        border: 1px solid #dfe6e9;
    }
    .dynamic-page-link-mobile {
        display: flex;
        align-items: center;
        text-decoration: none;
    }
    .dynamic-page-icon-mobile {
        width: 30px;
        text-align: center;
        font-size: 18px;
    }
    .dynamic-page-name-mobile {
        flex: 1;
        color: #2d3436;
        font-size: 14px;
        margin: 0 10px;
    }
    .dynamic-page-arrow-mobile {
        color: #b2bec3;
        font-size: 12px;
    }
    .dynamic-page-item-mobile:hover {
        background: #f8f9fa;
        border-color: #636e72;
    }
    .dynamic-pages-empty {
        text-align: center;
        padding: 30px;
        color: #636e72;
        font-style: italic;
    }