/* List Layout for Female Escorts Page (Light Theme) */

/* Top Search Bar (Inline) */
.list-search-bar {
    background: #f8f9fa;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}
.list-search-bar .form-control,
.list-search-bar .form-select {
    background-color: #fff;
    border: 1px solid #ced4da;
    color: #495057;
    height: 38px;
    padding: 6px 12px;
    border-radius: 4px;
}

/* Profile List Layout */
.profile-list-item {
    background: #fff;
    border: 1px solid #dee2e6;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 4px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.profile-main-img {
    flex: 0 0 200px;
}
.profile-main-img img {
    width: 100%;
    height: auto;
    border: 1px solid #dee2e6;
    border-radius: 4px;
}

.profile-thumbs {
    flex: 0 0 60px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.profile-thumbs img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    opacity: 0.8;
    transition: opacity 0.2s;
}
.profile-thumbs img:hover {
    opacity: 1;
}

.profile-info {
    flex: 1;
    min-width: 250px;
    border-left: 1px solid #dee2e6;
    padding-left: 15px;
}
.profile-info h3 {
    margin-top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #212529;
}
.profile-info h3 a {
    color: #212529;
    text-decoration: none;
}
.profile-info h3 a:hover {
    color: #0d6efd;
}
.profile-info .badge {
    background: #198754;
    color: #fff;
    font-weight: 400;
    margin-left: 10px;
}
.profile-info p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
    color: #495057;
}

/* Sidebar "What's New" */
.sidebar-whats-new {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 15px;
}
.sidebar-whats-new h3 {
    font-size: 18px;
    color: #212529;
    margin-top: 0;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #0d6efd;
    padding-bottom: 10px;
}
.sidebar-whats-new .btn-subscribe {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
}
.review-item {
    border-top: 1px solid #dee2e6;
    padding: 12px 0;
    display: flex;
    gap: 12px;
}
.review-item:first-of-type {
    border-top: none;
}
.review-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.review-content {
    font-size: 13px;
    line-height: 1.5;
    color: #6c757d;
}
.review-title {
    color: #212529;
    margin-bottom: 4px;
    display: block;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .profile-list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .profile-info {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #dee2e6;
        padding-top: 15px;
        margin-top: 10px;
    }
    .profile-thumbs {
        flex-direction: row;
        justify-content: center;
    }
}
