

.section-title {
    text-align: center;
    color: #facc15;
    margin: 20px 0;
}

.client-card {
    background: #0f172a;
    border-radius: 18px;
    padding: 18px;
    margin: 15px;
    border: 1px solid rgba(34,197,94,0.2);
    box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

/* TOP */
.card-row {
    display: flex;
    gap: 15px;
}

/* AVATAR */
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* ONLINE / OFFLINE COLORS */
.avatar.online { background: #22c55e; }
.avatar.offline { background: #6b7280; }

.center { flex: 1; }

/* NAME ROW */
.name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.name-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.name-left h3 {
    margin: 0;
    font-size: 18px;
    color: White;
}

/* STATUS */
.status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.status.online { color: #22c55e; }
.status.offline { color: #ef4444; }

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}
.dot.online { background: #22c55e; }
.dot.offline { background: #ef4444; }

/* HEART */
.heart {
    color: #ccc;
    margin-left: 10px;
    cursor: pointer;
}

/* INFO */
.info-row {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
}

.info-row p {
    width: 50%;
    margin: 3px 0;
    font-size: 14px;
    color: #cbd5f5;
}

.info-row i {
    margin-right: 6px;
}

.fa-user, .fa-clock, .fa-location-dot, .fa-phone {
    color: #ffffff;
}

/* BOTTOM */
.bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

/* PRICE */
.price {
    color: #22c55e;
    font-size: 22px;
    font-weight: bold;
}

/* BUTTONS */
.btn-accept {
    background: #22c55e;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    color: #fff;
}

.btn-booked {
    background: #374151;
    border: none;
    padding: 8px 12px;
    border-radius: 10px;
    color: #ccc;
}

.clients-header {
    text-align: left;
    padding: 0 10px;
}

.section-title {
    text-align: center; /* keep heading centered */
}

.user-location {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #d1d5db;

    margin-top: 8px;
}


.clients-header .user-location i {
    color: #ffd700;
    font-size: 16px;
}

/* MOBILE */
@media (max-width: 600px) {
    .info-row p {
        font-size: 12px;
    }
}