/* Customer Portal Styles */

.crm-customer-portal {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.crm-tab-pane {
    animation: fadeIn 0.3s ease-in;
}

.crm-tab-pane table {
    width: 100%;
    border-collapse: collapse;
}

.crm-tab-pane table thead {
    background: #f5f5f5;
}

.crm-tab-pane table th {
    padding: 12px;
    text-align: left;
    border-bottom: 2px solid #ddd;
    font-weight: 600;
    color: #333;
}

.crm-tab-pane table td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.crm-tab-pane table tbody tr:hover {
    background: #f9f9f9;
}

.crm-top-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

.crm-top-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid #d0d7de;
    border-radius: 8px;
    background: #ffffff;
    color: #1f2937 !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.crm-top-action:hover,
.crm-top-action:focus {
    background: #f8fafc;
    border-color: #b8c2cc;
    color: #111827 !important;
    text-decoration: none !important;
    box-shadow: 0 1px 2px rgba(0,0,0,0.08);
    outline: none;
}

.crm-top-action-primary {
    background: #1f2937;
    border-color: #1f2937;
    color: #ffffff !important;
}

.crm-top-action-primary:hover,
.crm-top-action-primary:focus {
    background: #111827;
    border-color: #111827;
    color: #ffffff !important;
}

.crm-top-action-install {
    background: #eef2f7;
    border-color: #d7dde5;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .crm-customer-portal {
        padding: 10px;
    }
    
    .crm-tab-pane table {
        font-size: 14px;
    }
    
    .crm-tab-pane table th,
    .crm-tab-pane table td {
        padding: 8px;
    }
}
