/**
 * DLG Certificate Maker — LearnDash front-end styles.
 * Matches LD30 theme styling.
 */

/* ═══════════ Course page: certificate download ═══════════ */

.dlg-cert-ld-download {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #09326C;
    border-radius: 6px;
    padding: 20px 24px;
    margin: 24px 0;
}

.dlg-cert-ld-download h3 {
    margin: 0 0 6px 0;
    font-size: 16px;
    color: #09326C;
}

.dlg-cert-ld-download p {
    margin: 0 0 14px 0;
    color: #555;
    font-size: 14px;
}

.dlg-cert-ld-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dlg-cert-ld-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    background: #e8e8e8;
    color: #333;
    border: none;
    cursor: pointer;
}

.dlg-cert-ld-btn:hover {
    background: #d4d4d4;
    color: #111;
}

.dlg-cert-ld-btn-primary {
    background: #09326C;
    color: #fff;
}

.dlg-cert-ld-btn-primary:hover {
    background: #091E42;
    color: #fff;
}

/* ═══════════ Profile: My Certificates section ═══════════ */

.dlg-cert-ld-profile {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.dlg-cert-ld-profile h3 {
    margin: 0 0 16px 0;
    font-size: 18px;
    color: #1d2327;
}

.dlg-cert-ld-cert-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dlg-cert-ld-cert-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 14px 18px;
    gap: 16px;
}

.dlg-cert-ld-cert-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
    min-width: 0;
}

.dlg-cert-ld-cert-info strong {
    font-size: 14px;
    color: #1d2327;
}

.dlg-cert-ld-cert-date,
.dlg-cert-ld-cert-hours {
    font-size: 12px;
    color: #888;
}

.dlg-cert-ld-cert-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.dlg-cert-ld-btn-sm {
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    background: #e8e8e8;
    color: #333;
    transition: background 0.2s;
}

.dlg-cert-ld-btn-sm:hover {
    background: #d4d4d4;
    color: #111;
}

/* ═══════════ Mobile ═══════════ */

@media (max-width: 640px) {
    .dlg-cert-ld-cert-item {
        flex-direction: column;
        align-items: flex-start;
    }
    .dlg-cert-ld-cert-actions {
        width: 100%;
    }
    .dlg-cert-ld-btn-sm {
        flex: 1;
        text-align: center;
    }
}
