/* IDSync User Documents Styles */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;600&family=Inter:wght@400;500;600&display=swap');

.idsync-user-docs {
    font-family: 'Inter', 'Noto Sans Bengali', sans-serif;
    max-width: 1000px;
    margin: 30px auto;
}

.idsync-docs-header {
    text-align: center;
    margin-bottom: 40px;
}

.idsync-docs-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
}

.idsync-docs-header p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
}

.idsync-orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.idsync-order-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.idsync-order-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.idsync-order-card > div {
    margin-bottom: 12px;
    font-size: 13px;
}

.idsync-order-card strong {
    color: #374151;
    font-weight: 600;
}

.idsync-order-card code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 12px;
    color: #7c3aed;
}

.order-ref,
.order-service,
.order-date {
    color: #374151;
}

.order-whatsapp {
    padding: 8px;
    background: #f0fdf4;
    border-left: 3px solid #16a34a;
    border-radius: 4px;
}

.wa-num {
    color: #16a34a;
    font-weight: 600;
    font-size: 14px;
}

.order-actions {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.btn-view-doc {
    flex: 1;
    display: inline-block;
    padding: 8px 12px;
    background: #e94560;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s;
}

.btn-view-doc:hover {
    background: #c73652;
    color: #fff;
}

.idsync-empty-msg {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    color: #64748b;
    font-size: 14px;
}

@media (max-width: 768px) {
    .idsync-orders-grid {
        grid-template-columns: 1fr;
    }

    .idsync-docs-header h2 {
        font-size: 22px;
    }
}
