/* Start custom CSS */body {
    background: #090909;
    font-family: 'Poppins', sans-serif;
}

.plm-dashboard {
    display: flex;
    min-height: 100vh;
    background: #090909;
}

.plm-sidebar {
    width: 260px;
    background: #111111;
    border-right: 1px solid #d4af37;
    padding: 30px;
}

.plm-content {
    flex: 1;
    padding: 30px;
}

.plm-cards {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
}

.plm-card {
    background: #151515;
    border: 1px solid #d4af37;
    border-radius: 20px;
    padding: 25px;
    color: white;
    box-shadow: 0 0 20px rgba(212,175,55,.15);
}

.plm-card h3 {
    color: #d4af37;
    font-size: 16px;
}

.plm-card h2 {
    font-size: 32px;
    margin-top: 10px;
}

.plm-table {
    margin-top: 30px;
    background: #151515;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #333;
}

.plm-status-active {
    color: #00ff66;
}

.plm-status-inactive {
    color: #ff4444;
}

@media(max-width:768px){
    .plm-dashboard {
        flex-direction: column;
    }

    .plm-sidebar {
        width: 100%;
    }

    .plm-cards {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */