/* customer-dashboard.css */
/* Dashboard Lisensi untuk Validate Certificate Pro */

.vc-customer-dashboard {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    max-width: 800px;
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    background: white;
}

.vc-customer-dashboard h2 {
    margin: 0;
    padding: 18px 24px;
    background: #2271b1;
    color: white;
    font-size: 1.5em;
    font-weight: 500;
}

.vc-license-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}

.vc-license-table th {
    text-align: left;
    padding: 14px 24px;
    background: #f8f9fa;
    width: 220px;
    font-weight: 600;
    color: #1e1e1e;
    border-bottom: 1px solid #ddd;
}

.vc-license-table td {
    padding: 14px 24px;
    border-bottom: 1px solid #eee;
    color: #333;
}

.vc-license-table code.vc-license-key {
    font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;
    background: #f0f0f0;
    color: #d73a49;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.3px;
}

.vc-status {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
}

.vc-status.active {
    background: #dfffdf;
    color: #007300;
}

.vc-status.expired {
    background: #ffeded;
    color: #d63638;
}

.vc-status.inactive {
    background: #f0f0f0;
    color: #666;
}

.vc-actions {
    padding: 18px 24px;
    background: #f9f9f9;
    border-top: 1px solid #ddd;
}

.vc-actions .button {
    margin-right: 10px;
    text-decoration: none;
}

/* Responsif */
@media (max-width: 600px) {
    .vc-customer-dashboard h2,
    .vc-license-table th,
    .vc-license-table td {
        padding: 12px 16px;
        font-size: 14px;
    }

    .vc-license-table th {
        width: auto;
    }
}