@import '_content/CarrierPortal.Blazor.Common/CarrierPortal.Blazor.Common.ww9wueh7ci.bundle.scp.css';
@import '_content/Toolbelt.Blazor.SplitContainer/Toolbelt.Blazor.SplitContainer.bundle.scp.css';

/* /App.razor.rz.scp.css */
body[b-n00es3nvpu]{
    color: green;
}
/* /Components/CarrierContactList.razor.rz.scp.css */
/* ContactList.razor.css */

.contact-list-container[b-7h14yoerxc] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background-color: #f8fafc;
    color: #374151;
    line-height: 1.6;
}

.header[b-7h14yoerxc] {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

    .header h1[b-7h14yoerxc] {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .header p[b-7h14yoerxc] {
        font-size: 0.9rem;
        opacity: 0.9;
    }

.controls[b-7h14yoerxc] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    gap: 12px;
}

.search-box[b-7h14yoerxc] {
    flex: 1;
    max-width: 400px;
    position: relative;
}

    .search-box input[b-7h14yoerxc] {
        width: 100%;
        padding: 12px 40px 12px 16px;
        border: 2px solid #e5e7eb;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.2s;
    }

        .search-box input:focus[b-7h14yoerxc] {
            outline: none;
            border-color: #2563eb;
        }

.search-icon[b-7h14yoerxc] {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    display: inline-block;
}

.add-contact-btn[b-7h14yoerxc] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .add-contact-btn:hover[b-7h14yoerxc] {
        background: #1d4ed8;
    }

.contacts-grid[b-7h14yoerxc] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.loading-container[b-7h14yoerxc] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 16px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.loading-text[b-7h14yoerxc] {
    margin-top: 16px;
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

.contact-card[b-7h14yoerxc] {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.2s;
    border: 1px solid #e5e7eb;
    margin: 1px; /* Prevent layout shift on hover */
}

    .contact-card:hover[b-7h14yoerxc] {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

.contact-header[b-7h14yoerxc] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
    gap: 16px;
}

.contact-info h3[b-7h14yoerxc] {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.contact-title[b-7h14yoerxc] {
    color: #6b7280;
    font-size: 0.8rem;
    margin-bottom: 0;
}

.contact-details[b-7h14yoerxc] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    min-width: 0;
}

    .contact-details p[b-7h14yoerxc] {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.875rem;
        color: #4b5563;
        margin-bottom: 0;
    }

.contact-icon[b-7h14yoerxc] {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

.contact-actions[b-7h14yoerxc] {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.contact-action-delete[b-7h14yoerxc] {
    width: 54px;
    min-width: 54px;
    max-width: 54px;
}

.action-btn[b-7h14yoerxc] {
    background: none;
    border: 1px solid #d1d5db;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    color: #6b7280;
    transition: all 0.2s;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-btn:hover[b-7h14yoerxc] {
        border-color: #2563eb;
        color: #2563eb;
    }

.roles[b-7h14yoerxc] {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.role-badge[b-7h14yoerxc] {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.role-admin[b-7h14yoerxc] {
    background: #fef3c7;
    color: #92400e;
}

.role-accounting[b-7h14yoerxc] {
    background: #d1fae5;
    color: #065f46;
}

.role-insurance[b-7h14yoerxc] {
    background: #dbeafe;
    color: #1d4ed8;
}

.role-claims[b-7h14yoerxc] {
    background: #fce7f3;
    color: #be185d;
}

.role-operations[b-7h14yoerxc] {
    background: #f3e8ff;
    color: #7c3aed;
}

.role-safety[b-7h14yoerxc] {
    background: #fed7d7;
    color: #c53030;
}

/* Additional contact types from database */
.role-accounting-rep[b-7h14yoerxc] {
    background: #d1fae5;
    color: #065f46;
}

.role-owner[b-7h14yoerxc] {
    background: #fef3c7;
    color: #92400e;
}

.role-dispatcher[b-7h14yoerxc] {
    background: #f3f4f6;
    color: #374151;
}

.role-manager[b-7h14yoerxc] {
    background: #e0e7ff;
    color: #3730a3;
}

.role-president[b-7h14yoerxc] {
    background: #fdf4ff;
    color: #86198f;
}

.role-vice-president[b-7h14yoerxc] {
    background: #ecfdf5;
    color: #047857;
}

.role-sales-rep[b-7h14yoerxc] {
    background: #fff7ed;
    color: #c2410c;
}

.role-rate[b-7h14yoerxc] {
    background: #f0f9ff;
    color: #0369a1;
}

.role-other[b-7h14yoerxc] {
    background: #f9fafb;
    color: #6b7280;
}

.role-new-business-contact[b-7h14yoerxc] {
    background: #fffbeb;
    color: #d97706;
}

.role-eft-contact[b-7h14yoerxc] {
    background: #f0fdf4;
    color: #15803d;
}

.role-24-hour-contact[b-7h14yoerxc] {
    background: #fef2f2;
    color: #dc2626;
}

.role-bid-contact[b-7h14yoerxc] {
    background: #f5f3ff;
    color: #7c3aed;
}

.empty-state[b-7h14yoerxc] {
    text-align: center;
    padding: 32px 16px;
    background: white;
    border-radius: 8px;
    border: 2px dashed #d1d5db;
}

    .empty-state h3[b-7h14yoerxc] {
        font-size: 1.1rem;
        color: #374151;
        margin-bottom: 6px;
    }

    .empty-state p[b-7h14yoerxc] {
        color: #6b7280;
        margin-bottom: 16px;
        font-size: 0.9rem;
    }

.btn-primary[b-7h14yoerxc] {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

    .btn-primary:hover[b-7h14yoerxc] {
        background: #1d4ed8;
    }

@media (max-width: 768px) {
    .contact-list-container[b-7h14yoerxc] {
        padding: 12px;
    }

    .contact-header[b-7h14yoerxc] {
        flex-direction: column;
        gap: 12px;
    }

    .contact-details[b-7h14yoerxc] {
        order: 2;
    }

    .contact-actions[b-7h14yoerxc] {
        order: 3;
        align-self: flex-end;
    }

    .contacts-grid[b-7h14yoerxc] {
        gap: 12px;
    }

    .controls[b-7h14yoerxc] {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box[b-7h14yoerxc] {
        max-width: none;
    }

    .header[b-7h14yoerxc] {
        padding: 16px 12px;
    }
}

/* Current User Highlighting */
/*.contact-card.current-user {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.contact-card.current-user:hover {
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}*/

.current-user-badge[b-7h14yoerxc] {
    max-height: 20px;
    background: #2563eb;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-card.current-user .contact-info h3[b-7h14yoerxc] {
    color: #1e40af;
}

/* /Components/CarrierDashboard.razor.rz.scp.css */
[b-c5wtrocrql] .dashboard-tile {
    width: 375px;
    height: 150px;
}

    [b-c5wtrocrql] .dashboard-tile.dashboard-tile-large {
        width: 450px;
        height: 150px;
    }

    [b-c5wtrocrql] .dashboard-tile .text-warning {
        color: rgb(235 146 45) !important;
        /*color: #FF6F00 !important;*/
    }


/* /Components/DashboardWelcomePanel.razor.rz.scp.css */
.dashboard-welcome-panel[b-22lwnhnz7c] {
    height: 375px;
    background: linear-gradient(135deg, var(--fe-nucor-primary-dark-green) 0%, var(--fe-nucor-primary-medium-green) 100%);
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

    .dashboard-welcome-panel[b-22lwnhnz7c]::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        pointer-events: none;
    }

.welcome-content[b-22lwnhnz7c] {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.welcome-title[b-22lwnhnz7c] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    max-width: 800px;
}

.welcome-subtitle[b-22lwnhnz7c] {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 800px;
}

.welcome-features[b-22lwnhnz7c] {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item[b-22lwnhnz7c] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f1f5f9;
    font-size: 1rem;
}

.feature-icon[b-22lwnhnz7c] {
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .dashboard-welcome-panel[b-22lwnhnz7c] {
        height: 40vh;
        padding: 1.5rem;
    }

    .welcome-title[b-22lwnhnz7c] {
        font-size: 2rem;
    }

    .welcome-subtitle[b-22lwnhnz7c] {
        font-size: 1.1rem;
    }

    .welcome-features[b-22lwnhnz7c] {
        flex-direction: column;
        gap: 1rem;
    }
}
/* /Dialogs/CompanyInfoChangeRequestDialog.razor.rz.scp.css */
/* /Dialogs/ConfirmationModal.razor.rz.scp.css */
.confirmation-content[b-ozggbln0fw] {
    padding: 16px;
    min-width: 400px;
}

.confirmation-message[b-ozggbln0fw] {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.confirmation-icon[b-ozggbln0fw] {
    font-size: 32px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 4px;
}

.message-text[b-ozggbln0fw] {
    font-size: 16px;
    line-height: 1.5;
    color: #374151;
}

.confirmation-actions[b-ozggbln0fw] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.btn[b-ozggbln0fw] {
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn:disabled[b-ozggbln0fw] {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-danger[b-ozggbln0fw] {
    background-color: #dc2626;
    border-color: #dc2626;
    color: white;
}

.btn-danger:hover:not(:disabled)[b-ozggbln0fw] {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.btn-secondary[b-ozggbln0fw] {
    background-color: #f3f4f6;
    border-color: #d1d5db;
    color: #374151;
}

.btn-secondary:hover:not(:disabled)[b-ozggbln0fw] {
    background-color: #e5e7eb;
    border-color: #9ca3af;
}

@media (max-width: 576px) {
    .confirmation-content[b-ozggbln0fw] {
        min-width: 300px;
        padding: 12px;
    }
    
    .confirmation-message[b-ozggbln0fw] {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .confirmation-icon[b-ozggbln0fw] {
        font-size: 28px;
    }
    
    .confirmation-actions[b-ozggbln0fw] {
        flex-direction: column;
    }
    
    .btn[b-ozggbln0fw] {
        width: 100%;
    }
}
/* /Dialogs/ContactEditDialog.razor.rz.scp.css */
.contact-form[b-sguxyo3r75] {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row[b-sguxyo3r75] {
    display: flex;
    gap: 16px;
}

.form-group[b-sguxyo3r75] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-label[b-sguxyo3r75] {
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    font-size: 0.875rem;
}

.contact-types[b-sguxyo3r75] {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    /*gap: 12px;*/
    margin-top: 0;
}

.contact-type-option[b-sguxyo3r75] {
    min-width: 200px;
}

.error-text[b-sguxyo3r75] {
    color: #dc2626;
    font-size: 0.8rem;
    margin-top: 4px;
}

.form-actions[b-sguxyo3r75] {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .form-row[b-sguxyo3r75] {
        flex-direction: column;
    }
    
    .contact-types[b-sguxyo3r75] {
        flex-direction: column;
    }
    
    .contact-type-option[b-sguxyo3r75] {
        min-width: auto;
    }
    
    .form-actions[b-sguxyo3r75] {
        flex-direction: column;
        align-items: stretch;
    }
}
