    /* Variables de couleurs */
    :root {
        --primary-color: #195877; /* Bleu au lieu de orange */
        --secondary-color: #4183D7; /* Bleu secondaire */
        --text-color: #1A1A1A;
        --light-gray: #F5F5F5;
        --medium-gray: #E5E5E5;
        --dark-gray: #8F8F8F;
        --border-color: #DDDDDD;
        --white: #FFFFFF;
        --success-color: #195877;
        --warning-color: #F39C12;
        --danger-color: #E74C3C;
        --info-color: #3498DB;
        --offer-color: #195877; /* Vert pour les offres */
        --request-color: #E74C3C; /* Rouge pour les demandes */
        --pro-color: #3498DB; /* Bleu pour les professionnels */
    } 
    /* Reset CSS */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: Arial, Helvetica, sans-serif;
    }
    
    body {
        background-color: var(--light-gray);
        color: var(--text-color);
        font-size: 14px;
        line-height: 1.4;
    }
    
    /* Top Bar */
    .top-bar {
        background-color: var(--primary-color);
        color: var(--white);
        padding: 5px 0;
        font-size: 12px;
    }
    
    .top-bar-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .language-currency {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    
    .language-selector, .currency-selector {
        background: transparent;
        border: none;
        color: var(--white);
        cursor: pointer;
        padding: 2px 5px;
    }
    
    /* Header */
    .header {
        background-color: var(--white);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: sticky;
        top: 0;
        z-index: 1000;
        width: 100%;
    }
    
    .header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        align-items: center;
        height: 70px;
    }
    
    .logo {
        font-size: 24px;
        font-weight: bold;
        color: var(--primary-color);
        text-decoration: none;
        display: flex;
        align-items: center;
        margin-right: 20px;
        min-width: 120px;
    }
    
    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    
    /* Search Bar */
    .search-container {
        flex-grow: 1;
        max-width: 400px;
        position: relative;
        margin-right: 20px;
    }
    
    .search-input {
        width: 100%;
        padding: 10px 15px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 14px;
    }
    
    .search-button {
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--primary-color);
        border: none;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        cursor: pointer;
    }
    
    /* Main Navigation */
    .main-nav {
        display: flex;
        height: 100%;
        flex-grow: 1;
        justify-content: space-between;
        max-width: 600px;
    }
    
    .nav-item {
        position: relative;
        height: 100%;
    }
    
    .nav-link {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 15px;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 14px;
        transition: color 0.2s;
        white-space: nowrap;
    }
    
    .nav-link:hover {
        color: var(--primary-color);
    }
    
    .nav-link i {
        margin-left: 5px;
        font-size: 10px;
    }
    
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        min-width: 250px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        display: none;
        z-index: 10;
    }
    
    .nav-item:hover .dropdown-menu {
        display: block;
    }
    
    .dropdown-item {
        display: block;
        padding: 10px 15px;
        color: var(--text-color);
        text-decoration: none;
        font-size: 13px;
        border-bottom: 1px solid var(--border-color);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background-color: var(--light-gray);
    }
    
    /* User Actions */
    .user-actions {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-left: auto;
    }
    
    .user-link {
        color: var(--text-color);
        text-decoration: none;
        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
    }
    
    .user-link:hover {
        color: var(--primary-color);
    }
    
    .notification-badge {
        position: relative;
    }
    
    .notification-badge .badge {
        position: absolute;
        top: -5px;
        right: -5px;
        background: red;
        color: white;
        font-size: 10px;
        padding: 2px 5px;
        border-radius: 10px;
        min-width: 15px;
        text-align: center;
    }
    
    .post-btn {
        background-color: var(--primary-color);
        color: var(--white);
        font-weight: bold;
        padding: 10px 16px;
        border-radius: 4px;
        text-decoration: none;
        font-size: 14px;
        transition: background-color 0.2s;
    }
    
    .post-btn:hover {
        background-color: #0e4561;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        max-width: 1400px;
        margin: 70px auto 0;
        padding: 0 15px;
        display: flex;
        align-items: center;
        font-size: 13px;
    }
    
    .breadcrumb a {
        color: var(--dark-gray);
        text-decoration: none;
    }
    
    .breadcrumb a:hover {
        color: var(--primary-color);
    }
    
    .breadcrumb-separator {
        margin: 0 8px;
        color: var(--dark-gray);
    }
    
    .breadcrumb-current {
        color: var(--text-color);
        font-weight: 500;
    }
    
    /* Main container */
    .container_ {
        max-width: 1400px;
        margin: 20px auto;
        padding: 0 15px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    /* Listing Detail */
    .listing-detail-container {
        flex: 1;
        min-width: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .listing-header {
        background-color: var(--white);
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .listing-title-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    
    .listing-title-container {
        flex: 1;
    }
    
    .listing-badge {
        display: inline-block;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .listing-badge.offer {
        background-color: var(--offer-color);
        color: white;
    }
    
    .listing-badge.request {
        background-color: var(--request-color);
        color: white;
    }
    
    .listing-badge.pro {
        background-color: var(--pro-color);
        color: white;
        margin-left: 5px;
    }
    
    .listing-title {
        font-size: 24px;
        font-weight: bold;
        margin-bottom: 5px;
        color: var(--text-color);
    }
    
    .listing-subtitle {
        font-size: 16px;
        color: var(--dark-gray);
    }
    
    .listing-price {
        font-size: 24px;
        font-weight: bold;
        color: var(--primary-color);
        text-align: right;
        white-space: nowrap;
        margin-left: 20px;
    }
    
    .listing-price-details {
        font-size: 13px;
        color: var(--dark-gray);
        text-align: right;
    }
    
    .listing-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }
    
    .listing-meta-left {
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--dark-gray);
        font-size: 13px;
    }
    
    .listing-meta-right {
        display: flex;
        gap: 10px;
    }
    
    .meta-action {
        display: flex;
        align-items: center;
        gap: 5px;
        color: var(--dark-gray);
        font-size: 13px;
        cursor: pointer;
        transition: color 0.2s;
    }
    
    .meta-action:hover {
        color: var(--primary-color);
    }
    
    /* Gallery */
    .listing-gallery {
        background-color: var(--white);
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .gallery-main {
        width: 100%;
        height: 230px;
        position: relative;
    }
    
    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    .gallery-nav {
        display: flex;
        padding: 10px;
        gap: 10px;
        overflow-x: auto;
    }
    
    .gallery-thumb {
        width: 80px;
        height: 60px;
        border-radius: 4px;
        overflow: hidden;
        cursor: pointer;
        opacity: 0.7;
        transition: opacity 0.2s;
    }
    
    .gallery-thumb:hover, .gallery-thumb.active {
        opacity: 1;
    }
    
    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-prev, .gallery-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 2;
        transition: background-color 0.2s;
    }
    
    .gallery-prev:hover, .gallery-next:hover {
        background-color: white;
    }
    
    .gallery-prev {
        left: 20px;
    }
    
    .gallery-next {
        right: 20px;
    }
    
    /* Listing Details */
    .listing-details {
        background-color: var(--white);
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .details-section {
        margin-bottom: 30px;
    }
    
    .details-section:last-child {
        margin-bottom: 0;
    }
    
    .details-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 15px;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .details-title i {
        font-size: 20px;
    }
    
    .details-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 15px;
    }
    
    .detail-item {
        display: flex;
        flex-direction: column;
    }
    
    .detail-label {
        font-size: 13px;
        color: var(--dark-gray);
        margin-bottom: 5px;
    }
    
    .detail-value {
        font-size: 15px;
        font-weight: 500;
    }
    
    .detail-description {
        line-height: 1.6;
        color: var(--text-color);
    }
    
    .detail-description p {
        margin-bottom: 15px;
    }
    
    .detail-description p:last-child {
        margin-bottom: 0;
    }
    
    /* Timeline */
    .timeline {
        position: relative;
        padding-left: 30px;
        margin-top: 20px;
    }
    
    .timeline::before {
        content: '';
        position: absolute;
        left: 7px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: var(--border-color);
    }
    
    .timeline-item {
        position: relative;
        padding-bottom: 20px;
    }
    
    .timeline-item:last-child {
        padding-bottom: 0;
    }
    
    .timeline-dot {
        position: absolute;
        left: -30px;
        top: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #b5edff;
        z-index: 1;
    }    
    .timeline-dot-to {
        position: absolute;
        left: -30px;
        top: 0;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background-color: #43da69;
        z-index: 1;
    }
    
    .timeline-date {
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .timeline-content {
        color: var(--text-color);
    }
    
    /* Features */
    .features-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .feature-tag {
        background-color: var(--light-gray);
        padding: 8px 12px;
        border-radius: 4px;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .feature-tag i {
        color: var(--primary-color);
    }
    
    /* Map */
    .map-container {
        width: 100%;
        height: 340px;
        border-radius: 5px;
        overflow: hidden;
    }
    .single-page-section {
    margin-bottom: 10px; 
    }
    .map-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Sidebar */
    .listing-sidebar {
        flex: 0 0 350px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .sidebar-section {
        background-color: var(--white);
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .sidebar-title {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    /* Company */
    .company-info {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .company-logo {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--light-gray);
        color: var(--primary-color);
        font-size: 24px;
        font-weight: bold;
    }
    
    .company-logo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .company-details {
        flex: 1;
    }
    
    .company-name {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .verified-badge {
        color: var(--success-color);
        font-size: 14px;
    }
    
    .company-meta {
        font-size: 13px;
        color: var(--dark-gray);
    }
    
    .company-stats {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-value {
        font-size: 16px;
        font-weight: bold;
        color: var(--primary-color);
    }
    
    .stat-label {
        font-size: 12px;
        color: var(--dark-gray);
    }
    
    /* Contact */
    .contact-form {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    .form-label {
        font-size: 13px;
        color: var(--dark-gray);
    }
    
    .form-input, .form-textarea {
        padding: 10px;
        border: 1px solid var(--border-color);
        border-radius: 4px;
        font-size: 14px;
        width: 100%;
    }
    
    .form-textarea {
        resize: vertical;
        min-height: 100px;
    }
    
    .btn {
        padding: 12px;
        border: none;
        border-radius: 4px;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        transition: background-color 0.2s;
        text-align: center;
        display: inline-block;
        text-decoration: none;
    }
    
    .btn-primary {
        background-color: var(--primary-color) !important;
        color: white;
    }
    
    .btn-primary:hover {
        background-color: #0e4561 !important;
        color: white;
    }
    
    .btn-secondary {
        background-color: var(--light-gray);
        color: var(--text-color);
    }
    
    .btn-secondary:hover {
        background-color: var(--medium-gray);
    }
    
    .btn-success {
        background-color: var(--success-color);
        color: white;
    }
    
    .btn-success:hover {
        background-color: #27ae60;
    }
    
    .btn-block {
        width: 100%;
        display: block;
    }
    
    .btn-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }
    
    /* Group */
    .group-info {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .group-header {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .group-icon {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        background-color: var(--primary-color);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }
    
    .group-title {
        font-size: 16px;
        font-weight: bold;
    }
    
    .group-stats {
        display: flex;
        justify-content: space-between;
        padding: 10px 0;
        border-top: 1px solid var(--border-color);
        border-bottom: 1px solid var(--border-color);
    }
    
    .group-members {
        display: flex;
        margin-top: 10px;
    }
    
    .member-avatar {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        overflow: hidden;
        border: 2px solid white;
        margin-left: -8px;
    }
    
    .member-avatar:first-child {
        margin-left: 0;
    }
    
    .member-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .member-count {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background-color: var(--light-gray);
        color: var(--dark-gray);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        margin-left: -8px;
    }
    
    /* Pro Badge */
    .pro-badge {
        display: inline-flex;
        align-items: center;
        background-color: var(--pro-color);
        color: white;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 11px;
        font-weight: bold; 
        margin-left: 8px;
    }
    
    .pro-badge i {
        margin-right: 3px;
        font-size: 10px;
    }
    
    /* Table */
    .detail-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
    }
    
    .detail-table th, .detail-table td {
        padding: 10px;
        text-align: left;
        border-bottom: 1px solid var(--border-color);
    }
    
    .detail-table th {
        font-weight: bold;
        color: var(--primary-color);
        background-color: var(--light-gray);
    }
    
    .detail-table tr:last-child td {
        border-bottom: none;
    }
    
    /* Similar Listings */
    .similar-listings {
        background-color: var(--white);
        border-radius: 5px;
        padding: 20px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        margin-top: 20px;
    }
    
    .similar-title {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 20px;
        color: var(--primary-color);
    }
    
    .similar-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 20px;
    }
    
    .similar-card {
        background-color: var(--white);
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        transition: transform 0.2s;
        border: 1px solid var(--border-color);
    }
    
    .similar-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    .similar-img {
        width: 100%;
        height: 180px;
        position: relative;
    }
    
    .similar-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .similar-badge {
        position: absolute;
        top: 10px;
        left: 10px;
        padding: 3px 8px;
        border-radius: 3px;
        font-size: 11px;
        font-weight: bold;
    }
    
    .similar-badge.offer {
        background-color: var(--offer-color);
        color: white;
    }
    
    .similar-badge.request {
        background-color: var(--request-color);
        color: white;
    }
    
    .similar-badge.pro {
        background-color: var(--pro-color);
        color: white;
        top: 10px;
        right: 10px;
        left: auto;
    }
    
    .similar-content {
        padding: 15px;
    }
    
    .similar-title-text {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        color: var(--text-color);
    }
    
    .similar-price {
        font-size: 16px;
        font-weight: bold;
        color: var(--primary-color);
        margin-bottom: 10px;
    }
    
    .similar-details {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-bottom: 15px;
    }
    
    .similar-detail {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
    }
    
    .similar-detail i {
        color: var(--dark-gray);
        width: 16px;
    }
  
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .container_ {
            flex-direction: column;
        }
        
        .listing-sidebar {
            flex: 0 0 100%;
            order: 2;
        }
        
        .listing-detail-container {
            order: 1;
        }
        
        .similar-grid {
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        }
    }
    
    @media (max-width: 768px) { 
        .container_ { 
            margin: 5px auto; 
            gap: 5px;
        }
        .listing-title-row {
            flex-direction: column;
        }
        
        .listing-price {
            margin-left: 0;
            margin-top: 10px;
            text-align: left;
        }
        
        .listing-price-details {
            text-align: left;
        }
        
        .gallery-main {
            height: 300px;
        }
        
        .details-grid {
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        }
        
        .similar-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 576px) {
        .gallery-main {
            height: 250px;
        }
        
        .gallery-thumb {
            width: 60px;
            height: 45px;
        }
        
        .listing-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .listing-meta-right {
            width: 100%;
            justify-content: space-between;
        }
    }
    .share-buttons-icons li a {
    height: 30px;
    width: 30px;
    display: inline-block;
    line-height: 30px;
    text-align: center;
    background-color: #333;
    color: #fff;
    font-size: 16px;
}
.share-buttons-content {
    display: inline-block;
    position: relative;
    width: calc(100% - 25px);
}
.share-buttons-trigger {
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: #a0a0a0;
    font-size: 18px;
    background-color: #f0f0f000;
    border-radius: 4px;
    transition: .4s;
    cursor: default;
}
.share-buttons-icons {
    position: relative; 
    padding: 0;
    margin: 0;
    /* opacity: 0; */
    transform: translateX(-10px);
    transition: all .4s cubic-bezier(.5,-.41,.19,2);
}
.verified-badge-with-title {
    position: relative;
    height: 22px;
    display: flex
;
    top: 0px;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    background-color: #30ab4a;
    text-align: center;
    z-index: 10;
    font-weight: 500;
    border-radius: 4px;
    padding: 0 8px 0 0;
    margin: 0;
    overflow: hidden;
    padding-left: 29px;
    line-height: 22px;
    width: 40% ;
}
.verified-badge-with-title:before {
    content: "\e92b";
    font-family: feather-icons;
    font-size: 14px;
    color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    line-height: 20px;
    height: 20px;
    width: 26px;
    display: inline-block;
    background-color: #38b653;
}
.verified-badge { 
    height: 17px;
    width: 17px;  
}
.verified-badge:before { 
    font-size: 12px; 
    line-height: 18px;
}

.bid .freelancer-avatar {
    width: 40px;
    margin: 0 auto;
    position: relative;
    margin-right: 10px;
}
.freelancer-name h4, .freelancer-name h4 a {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
}
.star-rating .star.half:after, .star-rating .star:before {
    font-family: material-icons;
    content: "\e988";
    display: block;
    color: #febe42;
    font-size: 15px;
}
.star-rating:before {
    content: attr(data-rating);
    float: left;
    border-radius: 4px;
    background-color: #febe42;
    color: #fff;
    font-size: 11px;
    line-height: 12px;
    font-weight: 700;
    padding: 5px 5px;
    position: relative;
    top: 1px;
    margin-right: 1px;
}
.group-members {
    display: block;
    margin-top: 15px;
}
.no_bid{
    color: #808080;
}
.bookmark-button {
    background-color: #8b6a12;
    display: inline-block;
    padding: 0;
    position: relative;
    height: 30px;
    line-height: 30px;
    color: #fff;
    padding: 0 10px;
    padding-left: 9px;
    border-radius: 4px;
    transition: .4s;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(0, 0, 0, .1);
}
.bookmark-button .bookmark-icon {
    border-radius: 4px;
    position: absolute;
    left: 0;
    right: auto;
    top: auto;
    height: 30px;
    width: 30px;
    border-radius: 4px 0 0 4px;
    pointer-events: none;
    transition: .4s;
    animation: none;
}
.bookmark-button .bookmark-icon:before {
    top: 3px;
    color: #fff;
    transition: .4s;
    font-size: 16px;
}
.related-links li.no_bid_li { 
    float: right;
}
.details_company{
    display: flex; 
}
.details_company_2{
    display: flex;
    margin-top: 5px; 
}
.more_ads{
    margin-left: 2px; 
    align-content: center;
    background-color: #ededed;
    padding: 2px; 
    border-radius: 4px;
    border: 1px solid var(--border-color);
}
a.apply-now-button, button.apply-now-button { 
    font-size: 14px; 
}
a.apply-now-button i, button.apply-now-button i {
    font-size: 16px; 
}
/* Progress bar */
        .progress-container {
            margin: 20px 0;
        }
        
        .progress-label {
            display: flex;
            justify-content: space-between;
            margin-bottom: 5px;
            font-size: 14px;
        }
        
        .progress-bar {
            height: 10px;
            background-color: var(--medium-gray);
            border-radius: 5px;
            overflow: hidden;
        }
        
        .progress-fill {
            height: 100%;
            background-color: var(--primary-color);
            border-radius: 5px;
        }
        .desc_bid { 
            font-size: 12px;
            background: #fff2f2;
            padding: 5px;
        } 

         .safety-tips {
            margin-top: 20px;
        }
        
        .safety-title {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .safety-list {
            list-style-type: none;
        }
        
        .safety-item {
            margin-bottom: 8px;
            font-size: 12px;
            color: var(--dark-gray);
            display: flex;
            align-items: flex-start;
            gap: 5px;
        }
        
        .safety-item i {
            color: var(--warning-color);
            margin-top: 2px;
        }
        .bids-bid .similar-content{
            background: #fbfbfb;
            padding: 10px;
        }