       .classified-item {
            margin-bottom: 20px;
        }
        .classified-card {
            display: flex;
            flex-direction: row;
            align-items: stretch;
            justify-content: space-between;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: box-shadow 0.3s ease-in-out;
            background-color: #fff;
        }
        .classified-card:hover {
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }
        .classified-card img {
            width: 180px;
            height: auto;
            object-fit: cover;
            object-position: bottom;
        }
        .classified-card .card-body {
            flex-grow: 1;
            padding: 10px 15px;
        }
        .btn {
            margin-right: 5px;
        }
        .rating {
            color: #ffc107;
        }
		
		.star {
    position: relative;
    display: inline-block;
    font-size: 24px;
    color: #FFD700; /* Gold color for stars */
}

.star .fa-star {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.star .fa-star-half {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

		
		 .verified-icon {
            color: #28a745; /* Green color for verified */
        }

        .not-verified-icon {
            color: #dc3545; /* Red color for not verified */
        }	
		
		.social-icons {
            display: flex;
            justify-content: left;
            margin-top: 10px;
        }
        .social-icon {
            margin: 0 5px;
            color: #fff;
            background-color: #007bff;
            border: 1px solid #007bff;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.3s ease;
        }
        .social-icon:hover {
            background-color: #0056b3;
            border-color: #0056b3;
        }
        .social-icon i {
            font-size: 16px;
        }
		
        @media (max-width: 767px) {
            .classified-card {
                flex-direction: column;
            }
            .classified-card img {
                width: 100%;
                height: 150px;
                object-position: top;
            }
            .classified-card .card-body {
                padding: 15px;
            }
        }
        
        .button-container {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-content {
    font-size: 14px;
    font-weight: bold;
}

.btn1 {
    background-color: #007bff;
    color: white;
}

.btn1:hover {
    background-color: #0056b3;
}
        
        
