﻿.container {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    padding: 20px;
}

.tabs {
    display: flex;
    margin-bottom: 1rem;
}

.tab-button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    background-color: #e9ecef;
    margin-right: 5px;
    border-radius: 5px;
}

    .tab-button.active {
        background-color: #007bff;
        color: white;
    }

.customer-list {
    border-top: 1px solid #ddd;
}

.customer-row {
    display: grid;
    grid-template-columns: 50px 1fr 1fr 1fr 1fr 1fr 100px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    background-color: #ffffff;
    margin-bottom: 5px;
    border-radius: 5px;
}

    .customer-row:hover {
        background-color: #f1f1f1;
    }

.avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.customer-info {
    display: flex;
    align-items: center;
}

.customer-name {
    font-weight: bold;
}

.tasks {
    font-size: 0.9rem;
    color: #888;
}

.policy-status {
    padding: 5px 10px;
    border-radius: 4px;
    color: white;
    text-align: center;
}

    .policy-status.UW-Approved {
        background-color: green;
    }

    .policy-status.Proposed {
        background-color: orange;
    }

    .policy-status.Lost {
        background-color: red;
    }

    .policy-status.Active {
        background-color: blue;
    }

.customer-details {
    background-color: #f1f1f1;
    padding: 10px;
    border-left: 4px solid #007bff;
    margin-bottom: 10px;
    border-radius: 5px;
}

.detail-info > div, .policies > .policy-details, .submissions > .submission-details {
    margin-bottom: 5px;
}

.policy-details, .submission-details {
    background-color: white;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 10px;
}

    .policy-details > div, .submission-details > div {
        margin-bottom: 5px;
    }
