
/* --- Info Boxes (Dealer Summary) --- */
.info-box {
    background: linear-gradient(90deg,#eef9f06b, #d8f0dc 100%);
   /* background-color: #F9FAFB;*/
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid #F3F4F6;
    height: 100%;
}

.info-label {
    font-size: 0.7rem;
    color: #6B7280;
    font-weight: 600;
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1F2937;
}

/* --- Asset Boxes --- */
.asset-box {
    border-radius: 8px;
    padding: 16px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .asset-box.blue {
        background: linear-gradient(90deg, #e0f2feab, #c0dff3 100%);
        border: 1px solid #c0dff3;
    }
    /* Light Blue */
    .asset-box.pink {
        border: 1px solid #f0d3f8;
        background: linear-gradient(90deg, #fae8ff, #f0d3f8 100%);
    }
    /* Light Pink */
    .asset-box.gray {
        background: linear-gradient(90deg,#eef9f06b, #d8f0dc 100%);
        border: 1px solid #d8f0dc;
    }
    .asset-box.orange {
        background: #ffedda75;
        border: 1px solid #ffedda75;
    }
/* Light Gray */

.asset-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4B5563;
    margin-bottom: 6px;
}

.asset-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1F2937;
}

.asset-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 0.5rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    background: white;
    color: #00796B;
}

/*.text-blue {
    color: #0284C7;
}

.text-pink {
    color: #DB2777;
}

.text-gray {
    color: #6B7280;
}*/

/* --- Tabs --- */
.custom-tabs {
    background: #f3f5f6;
    border-radius: 12px;
    padding: 9px;
    border: 1px solid #E5E7EB;
    margin-bottom: 24px;
    display: flex;
    gap: 10px;
    /* margin-bottom: 20px; */
}

.tab-btn {
    border: 1px solid #E5E7EB;
    background-color: #F9FAFB;
    color: #6B7280;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

    .tab-btn.active {
        background: linear-gradient(90deg, #eef9f06b, #d8f0dc 100%);
        border: 1px solid #66BB6A;
        color: #0d0d0dc7;
    }

/* --- Table Styling --- */
.custom-table th {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4B5563;
    background-color: #ffffff;
    border-bottom: 2px solid #F3F4F6;
    vertical-align: middle;
    padding: 12px;
}

.custom-table td {
    vertical-align: middle;
    padding: 8px 12px;
    font-size: 0.85rem;
    border-bottom: 1px solid #F9FAFB;
}

.table-val-box {
    background-color: #f3f5f6;
    border: 1px solid #F3F4F6;
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    color: #4B5563;
    font-size: 0.8rem;
    font-weight: 500;
    width: 100%;
}

/* --- Buttons --- */
.btn-add-action {
    background-color: #3372cf; /* Blue */
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 16px;
}

.btn-verified {
    border: 1px solid #10B981;
    color: #059669;
    background: transparent;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* --- Form Controls --- */
.custom-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4B5563;
    margin-bottom: 6px;
    display: block;
}

.custom-input, .custom-select {
    background-color: #F3F4F6;
    border: 1px solid transparent;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.85rem;
    color: #6B7280;
    width: 100%;
}

/* --- Performance Cards --- */
.perf-card {
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    padding: 16px;
    height: 100%;
    border-left: 4px solid #7A7A7A; 
}

    .perf-card .perf-year {
        font-size: 0.75rem;
        color: #6B7280;
        margin-bottom: 4px;
    }

    .perf-card .perf-val {
        font-size: 1rem;
        font-weight: 700;
        color: #1F2937;
    }

    .perf-card.green {
        background-color: #1B5E20;
        border-color: #065F46;
        color: white;
    }

        .perf-card.green .perf-year {
            color: #A7F3D0;
        }

        .perf-card.green .perf-val {
            color: white;
        }

/* --- Credit Limit Footer --- */
.credit-footer {
    background-color: #1B5E20; /* Very dark green */
    border-radius: 12px;
    padding: 21px;
    color: white;
    margin-bottom: 40px;
}

.credit-desc {
    font-size: 0.8rem;
    color: #A7F3D0;
    margin-top: 8px;
    line-height: 1.5;
}

.credit-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    height: 100%;
}

.credit-box-label {
    font-size: 0.7rem;
    color: #A7F3D0;
    margin-bottom: 4px;
}

.credit-box-val {
    font-size: 1.2rem;
    font-weight: 700;
}

.btn-white {
    background-color: white;
    color: #064E3B;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    width: 100%;
    margin-bottom: 10px;
}

.btn-outline-green {
    background-color: transparent;
    color: #A7F3D0;
    border: 1px solid #A7F3D0;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    width: 100%;
}
.financial-note-box {
    /*background: #f3f4f6;*/
    padding: 16px 14px;
    border-radius: 4px;
}

.financial-note-text {
    font-size: 0.83rem;
    color: #1c2431d1;
    margin-bottom: 10px;
    font-weight: 500;
}

.financial-note-badge {
    display: inline-block;
    font-size: 10px;
    color: #3b82f6;
    background: #eaf2ff;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-add-company {
    background: #097945;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 0.78rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}