.hcm-consulta-wrapper {
    max-width: 750px;
    margin: 0 auto;
}
.hcm-consulta-wrapper h3 {
    margin-bottom: 4px;
    font-size: 22px;
}
.hcm-welcome {
    color: #555;
    margin-bottom: 20px;
}

/* Login notice */
.hcm-login-notice {
    text-align: center;
    padding: 40px 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.hcm-login-notice p {
    color: #666;
    margin-bottom: 20px;
}
.hcm-btn-login {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 600;
    font-size: 15px;
}
.hcm-btn-login:hover {
    background: #005a87;
}

/* Certificate cards */
.hcm-certificados-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.hcm-cert-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s;
}
.hcm-cert-card:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hcm-cert-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hcm-cert-icon .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    color: #2e7d32;
}
.hcm-cert-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.hcm-cert-title {
    font-size: 16px;
    color: #222;
}
.hcm-cert-date,
.hcm-cert-dur {
    font-size: 13px;
    color: #777;
}
.hcm-cert-action {
    flex-shrink: 0;
}
.hcm-btn-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: #0073aa;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
}
.hcm-btn-download:hover {
    background: #005a87;
}
.hcm-btn-download .dashicons {
    font-size: 18px;
    width: 18px;
    height: 18px;
}
.hcm-pending {
    display: inline-block;
    color: #856404;
    background: #fff3cd;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 13px;
    border: 1px solid #ffeeba;
}
.hcm-no-results {
    padding: 30px 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    color: #888;
    font-size: 15px;
}

@media (max-width: 600px) {
    .hcm-cert-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .hcm-cert-icon {
        margin: 0 auto;
    }
}
