.logo {
    width: 100px;
    border-radius: 50% !important;
}
.client-logo {
    width: 60px;
    border-radius: 50% !important;
}
.text-justify {
    text-align: justify;
}
.job-table thead > tr > th {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}

.job-table tbody > tr > td {
    padding-top: .75rem !important;
    padding-bottom: .75rem !important;
}

.job-form .form-control,
.job-form .form-select {
    border-radius: 0;
}

.job-card {
    border-radius: 0;
}
.job-card .card-header {
    border-radius: 0;
    background-color: #d1e7dd;
}
.job-card .card-body.job-body {
    padding: 0;
}

/* Header Styling */
.header-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 4px solid #198754;
}

.logo-box {
    background: #ffffff;
    display: inline-block;
    padding: 10px;
    border-radius: 50%;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
}

.header-title {
    font-weight: 800;
    color: #212529;
}

.info-pill {
    background: #ffffff;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6c757d;
}

/* Job Card Styling */
.job-card {
    transition: all 0.3s ease;
    border-left: 5px solid transparent !important;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08) !important;
    border-left: 5px solid #198754 !important;
}

.job-title {
    font-weight: 700;
    color: #0d6efd; /* Adjust color based on your brand */
}

.fee-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    color: #6c757d;
}

.fee-amount {
    font-weight: 800;
    color: #198754;
    margin: 0;
}

.fee-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sticky-sidebar {
    position: sticky;
    top: 20px;
}

/* Responsive side border */
@media (min-width: 768px) {
    .side-separator {
        border-left: 1px solid #dee2e6;
    }
}

@media (max-width: 767px) {
    .fee-section {
        align-items: flex-start;
    }
}