<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.pc-submenu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.pc-item {
    background-color: #f5f5f5;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
    padding: 20px;
}

.pc-item:hover {
    background-color: #e9ecef;
    transform: translateY(-3px);
}

.pc-item.active {
    background-color: #007bff;
}

.pc-link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: 500;
}

.pc-item.active .pc-link {
    color: #fff;
}

.icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Warna ikon */
.icon-blue {
    color: #007bff;
}

.icon-green {
    color: #28a745;
}

.icon-orange {
    color: #fd7e14;
}

.icon-purple {
    color: #6f42c1;
}

.icon-red {
    color: #dc3545;
}

.pc-link .title {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.pc-link small {
    font-size: 0.85rem;
    color: #666;
}

.pc-item.active small {
    color: #e0e0e0;
}</pre></body></html>