/*
Theme Name: Betheme Child
Theme URI: https://themes.muffingroup.com/betheme
Author: Muffin group
Author URI: https://muffingroup.com
Description: Child Theme for Betheme
Template: betheme
Version: 2.0.2
*/



.custom-login-form {
    max-width: 360px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.custom-login-form p {
    margin-bottom: 1rem;
}

.custom-login-form label {
    font-weight: 600;
    margin-bottom: 0.3rem;
    display: block;
    color: #333;
}

.custom-login-form input[type="text"],
.custom-login-form input[type="password"] {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    box-sizing: border-box;
}

.custom-login-form input[type="submit"] {
    background-color: #0078d4;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.custom-login-form input[type="submit"]:hover {
    background-color: #005a9e;
}

.custom-login-form .error {
    color: red;
    font-weight: 600;
    margin-bottom: 1rem;
}




/* My Profile */
/* Modern Profile Form Styling */
.my-profile-form {
    max-width: 980px;
    margin: 2rem auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    position: relative;
    overflow: hidden;
}

.my-profile-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53, #ffb347, #ffd166);
}

.my-profile-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
}

.my-profile-form h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b6b, #ff8e53);
    border-radius: 2px;
}

.profile-picture-section {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.profile-picture-upload {
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.profile-picture-upload:hover {
    transform: scale(1.03);
}

.profile-picture-upload:hover::after {
    opacity: 1;
}

.profile-picture-upload::after {
    content: 'Change Photo';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 8px;
    font-size: 0.9rem;
    border-bottom-left-radius: 50%;
    border-bottom-right-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#profile-picture-preview {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.my-profile-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.my-profile-form p { 
    margin-bottom: 1.5rem;
}
.privacy-notice {
    margin-top: 1.5rem;;
}

.my-profile-form label {
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.my-profile-form .field-description {
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
    font-weight: 400;
}

.my-profile-form input[type="text"],
.my-profile-form input[type="number"],
.my-profile-form input[type="date"],
.my-profile-form input[type="email"],
.my-profile-form input[type="url"],
.my-profile-form select,
.my-profile-form textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.my-profile-form input[type="text"]:focus,
.my-profile-form input[type="number"]:focus,
.my-profile-form input[type="date"]:focus,
.my-profile-form input[type="email"]:focus,
.my-profile-form input[type="url"]:focus,
.my-profile-form select:focus,
.my-profile-form textarea:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52,152,219,0.2);
    background: #fff;
    outline: none;
}

.my-profile-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Custom select arrow */
.my-profile-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

/* Custom radio buttons for gender */
.gender-options {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.gender-option {
    flex: 1;
}

.gender-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.gender-option label {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1rem;
    background: #f5f5f5;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0;
    column-gap: .5rem;
}

.gender-option input[type="radio"]:checked + label {
    background: #3498db;
    color: white;
    box-shadow: 0 2px 10px rgba(52,152,219,0.3);
}

/* Interests chips/tags */
.interests-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.interest-chip {
    background: #e0f7fa;
    color: #00838f;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.interest-chip .remove-chip {
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

/* Submit button */
.my-profile-form input[type="submit"] {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    font-weight: 600;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(255,107,107,0.2);
}

.my-profile-form input[type="submit"]:hover {
    background: linear-gradient(135deg, #ff5252, #ff7b47);
    box-shadow: 0 6px 12px rgba(255,107,107,0.3);
    transform: translateY(-2px);
}

/* Status messages */
.my-profile-form .error {
    background: #ffebee;
    color: #c62828;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #c62828;
}

.my-profile-form .success {
    background: #e8f5e9;
    color: #2e7d32;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #2e7d32;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .my-profile-form .form-grid {
        grid-template-columns: 1fr;
    }
    
    .my-profile-form {
        padding: 2rem 1.5rem;
    }
}

/* Animation for form elements */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.my-profile-form > * {
    animation: fadeIn 0.4s ease forwards;
}

.my-profile-form > *:nth-child(1) { animation-delay: 0.1s; }
.my-profile-form > *:nth-child(2) { animation-delay: 0.2s; }
.my-profile-form > *:nth-child(3) { animation-delay: 0.3s; }
/* Continue with appropriate delays for all children */




/* Users Listing Page Styles */
/* Main Container */
.dating-users-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Search and Filter Form */
.users-search-form {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #555;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group select {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input[type="text"]:focus,
.form-group input[type="number"]:focus,
.form-group select:focus {
    border-color: #007bff;
    outline: none;
}

.age-range {
    display: flex;
    align-items: center;
    gap: 10px;
}

.age-range input {
    width: 70px;
}

.interests-select {
    width: 100%;
    min-height: 42px;
}

.search-button, .reset-button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    
}

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

.search-button:hover {
    background-color: #0069d9;
}

.reset-button {
    background-color: #f8f9fa;
    color: #333;
    border: 1px solid #ddd;
    margin-left: 10px;
}

.reset-button:hover {
    background-color: #e9ecef;
}

/* Smart Filters */
.smart-filters {
    display: flex;
    align-items: center;
    gap: 20px;
    /* margin-top: 15px; */
    /* padding-top: 15px; */
    border-top: 1px solid #eee;
}

.smart-filters label {
    font-weight: 600;
    color: #555;
    margin-right: 5px;
}

.smart-filters select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 0;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    margin-left: 10px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.toggle-switch input:checked + .slider {
    background-color: #007bff;
}

.toggle-switch input:checked + .slider:before {
    transform: translateX(30px);
}

.toggle-switch .label {
    position: absolute;
    left: 70px;
    /* top: 5px; */
    white-space: nowrap;
}

/* Users Grid */
.users-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.user-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.user-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.user-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.user-image {
    position: relative;
    display: block;
    height: 250px;
    overflow: hidden;
}

.user-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.user-card:hover .user-image img {
    transform: scale(1.05);
}

.user-age {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.match-score {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.user-details {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.user-details h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.user-details h3 a {
    color: #333;
    text-decoration: none;
}

.user-details h3 a:hover {
    color: #007bff;
}

.user-location, .last-active {
    margin: 5px 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
}

.user-location i, .last-active i {
    margin-right: 5px;
    color: #888;
}

.distance {
    color: #888;
    font-size: 0.9em;
    margin-left: 5px;
}

.user-bio {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    flex-grow: 1;
}

.user-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.view-profile, .send-message {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
}

.view-profile {
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
}

.view-profile:hover {
    background-color: #e0e0e0;
}

.send-message {
    background-color: #28a745;
    color: white;
}

.send-message:hover {
    background-color: #218838;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 16px;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-top: 30px;
}

.pagination a, .pagination span {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #007bff;
    transition: all 0.3s;
}

.pagination a:hover {
    background-color: #f0f0f0;
}

.pagination .current {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination .dots {
    border: none;
    padding: 8px 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .form-group {
        min-width: 100%;
    }
    
    .smart-filters {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .users-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 480px) {
    .users-grid {
        grid-template-columns: 1fr;
    }
    
    .user-actions {
        flex-direction: column;
    }
}


.form-actions {
    display: flex; 
    justify-content: space-between;
}

.action-section {
    display: flex;
    column-gap: 1rem;
}

/* Filter Sections */
.filter-section {
    /* margin-bottom: 25px; */
    padding: 4px 15px 8px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    flex: 1;
}

.filter-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}
.lifestyle-filter {
    display: flex;
    column-gap: .75rem;
    align-items: center;
}

/* Filter Options (Button Styles) */
/* Container layout */
.filter-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  /* margin-top: 8px; */
}

/* Button styling */
.filter-option {
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  height: 38px; /* match typical input height */
  display: flex;
  align-items: center;
}

.filter-option:hover {
  background-color: #f2f2f2;
  border-color: #999;
}

/* Active state */
.filter-option.active {
  background-color: #e91e63;
  color: #fff;
  border-color: #e91e63;
  box-shadow: 0 0 0 1px rgba(233, 30, 99, 0.25);
}

.form-group.search-wrapper {
    flex: 1 1 auto;
}

.form-group.age-range {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  /* margin-bottom: 1rem; */
  margin-right: 1rem;
}

.form-group.age-range label {
  font-weight: 500;
  margin-right: 8px;
  margin-top: 2px;
  white-space: nowrap;
}

.form-group.age-range input[type="number"] {
  width: 70px;
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  height: 38px;
  font-size: 14px;
  margin-bottom: 0;
}

.form-group.age-range span {
  margin: 0 4px;
  font-weight: bold;
}




.dating-profile-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
    color: #333;
}

/* Header with back button */
.dating-profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dating-back-btn {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.dating-back-btn:hover {
    color: #e83e8c;
}

.dating-back-btn i {
    margin-right: 8px;
}

/* Profile card */
.dating-profile-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Profile image section */
.dating-profile-image-container {
    position: relative;
    height: 400px;
    background: #f8f9fa;
}

.dating-profile-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.dating-profile-basic-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
}

.dating-profile-basic-info h1 {
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dating-profile-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.dating-stat-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.dating-stat-item i {
    margin-right: 5px;
    font-size: 12px;
}

/* Compatibility circle */
.dating-compatibility {
    position: absolute;
    right: 30px;
    bottom: 30px;
}

.dating-comp-score {
    text-align: center;
}

.dating-comp-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: conic-gradient(#e83e8c 0% var(--percentage), #eee var(--percentage) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
}

.dating-comp-circle::before {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
}

.dating-comp-circle span {
    position: relative;
    font-weight: bold;
    color: #e83e8c;
    font-size: 18px;
}

.dating-comp-score small {
    display: block;
    color: white;
    font-size: 12px;
    margin-top: 5px;
}

/* Profile details */
.dating-profile-details {
    padding: 30px;
}

.dating-profile-section {
    margin-bottom: 25px;
}

.dating-profile-section h3 {
    color: #e83e8c;
    font-size: 18px;
    margin: 0 0 15px;
    display: flex;
    align-items: center;
}

.dating-profile-section h3 i {
    margin-right: 10px;
    font-size: 16px;
}

.dating-profile-section p {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

/* Interests tags */
.dating-interests-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dating-tag {
    background: #f3e5f5;
    color: #9c27b0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Action buttons */
.dating-profile-actions {
    display: flex;
    gap: 10px;
}

.dating-action-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

.dating-action-btn i {
    margin-right: 8px;
}

.dating-message-btn {
    background: #e83e8c;
    color: white;
}

.dating-message-btn:hover {
    background: #d2337d;
    transform: translateY(-2px);
}

.dating-like-btn {
    background: white;
    color: #e83e8c;
    border: 2px solid #e83e8c;
}

.dating-like-btn:hover {
    background: #fce4ec;
    transform: translateY(-2px);
}

/* Notices */
.dating-notice {
    padding: 15px;
    border-radius: 5px;
    margin: 20px 0;
    font-weight: 500;
}

.dating-notice.error {
    background: #fde8e8;
    color: #c53030;
    border-left: 4px solid #c53030;
}

/* Grid layout for additional sections */
.dating-profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.dating-profile-grid-item {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #e83e8c;
}

.dating-profile-grid-item h4 {
    margin: 0 0 10px;
    color: #e83e8c;
    font-size: 15px;
    display: flex;
    align-items: center;
}

.dating-profile-grid-item h4 i {
    margin-right: 8px;
    font-size: 14px;
}

.dating-profile-grid-item p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Last update info */
.dating-profile-update {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
    text-align: right;
    color: #888;
    font-size: 13px;
}

.dating-profile-update i {
    margin-right: 5px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dating-profile-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dating-profile-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .dating-profile-actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .dating-profile-grid {
        grid-template-columns: 1fr;
    }
    
    .dating-profile-image-container {
        height: 300px;
    }
}


/* Lifestyle Filters Grid */
.lifestyle-filters {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 15px;
}

.lifestyle-filter h4 {
    margin: 0 0 0 0;
    font-size: 15px;
    font-weight: 500;
    color: #555;
}



* Profil görüntüleme ana konteyner */
.dating-profile-views {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.dating-profile-views h3 {
    margin-top: 0;
    color: #e83e8c;
    font-size: 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

/* Filtre butonları */
.dating-views-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.dating-filter-btn {
    background: #f5f5f5;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.dating-filter-btn:hover {
    background: #eee;
}

.dating-filter-btn.active {
    background: #e83e8c;
    color: white;
}

/* Görüntüleyenler listesi */
/* Ana Konteyner */
.dating-views-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
}

/* Başlık Alanı */
.dating-views-header {
    padding: 20px 25px;
    background: linear-gradient(135deg, #ff6b9e 0%, #e83e8c 100%);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dating-views-title {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dating-views-title i {
    font-size: 24px;
}

.dating-views-stats {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

/* Kontroller */
.dating-views-controls {
    padding: 15px 25px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.dating-views-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.dating-filter-btn {
    border: none;
    background: #f5f5f5;
    color: #555;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dating-filter-btn i {
    font-size: 14px;
}

.dating-filter-btn.active {
    background: #e83e8c;
    color: white;
}

.dating-views-search {
    position: relative;
    min-width: 200px;
}

.dating-views-search i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.dating-search-input {
    width: 100%;
    padding: 8px 15px 8px 35px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-size: 14px;
    transition: all 0.3s;
}

.dating-search-input:focus {
    border-color: #e83e8c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.1);
}

/* İçerik Alanı */
.dating-views-content {
    padding: 20px;
}

.dating-viewers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 15px;
}

/* Görüntüleyen Kartları */
.dating-viewer-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: #333;
}

.dating-viewer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: #e83e8c;
}

.dating-viewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dating-viewer-avatar.female {
    border-color: #ffcce6;
}

.dating-viewer-avatar.male {
    border-color: #cce0ff;
}

.dating-viewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dating-viewer-details {
    flex: 1;
    min-width: 0;
}

.dating-viewer-name {
    margin: 0 0 5px;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dating-viewer-age {
    background: #f0f0f0;
    color: #666;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 10px;
    display: inline-block;
}

.dating-viewer-stats {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    font-size: 12px;
    color: #777;
}

.dating-viewer-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.dating-viewer-badge {
    position: absolute;
    top: 10px;
    right: -25px;
    background: #ffc107;
    color: #333;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 25px 3px 15px;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dating-viewer-badge i {
    margin-right: 3px;
}

/* Boş Durum */
.dating-views-empty {
    text-align: center;
    padding: 40px 20px;
    grid-column: 1 / -1;
}

.dating-views-empty i {
    font-size: 50px;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.dating-views-empty p {
    margin: 0 0 5px;
    font-size: 16px;
    color: #666;
}

.dating-views-empty small {
    font-size: 13px;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .dating-viewers-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .dating-views-controls {
        flex-direction: column;
        gap: 15px;
    }
    
    .dating-views-search {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .dating-viewers-grid {
        grid-template-columns: 1fr;
    }
    
    .dating-views-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}



/* Dashboard Styles */
.dating-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dating-dashboard-header {
    margin-bottom: 30px;
    text-align: center;
}

.dating-dashboard-header h1 {
    color: #e83e8c;
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dating-dashboard-header p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

/* Stats Grid */
.dating-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dating-stat-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.dating-stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-info h3 {
    margin: 0;
    font-size: 24px;
    color: #333;
}

.stat-info p {
    margin: 5px 0 0;
    color: #777;
    font-size: 14px;
}

/* Sections */
.dating-dashboard-section {
    margin-bottom: 40px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.section-header h2 {
    margin: 0;
    font-size: 20px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header .view-all {
    color: #e83e8c;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

/* Activity Grid */
.activity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.activity-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.activity-card h3 {
    margin: 0 0 15px;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mini-activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
}

.mini-activity-item:last-child {
    border-bottom: none;
}

.mini-activity-item img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.activity-info {
    flex: 1;
    min-width: 0;
}

.activity-name {
    display: block;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-preview {
    display: block;
    font-size: 13px;
    color: #777;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.activity-time {
    display: block;
    font-size: 12px;
    color: #999;
}

.no-activity {
    text-align: center;
    padding: 20px;
    color: #999;
    font-size: 14px;
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.quick-action {
    background: white;
    border-radius: 10px;
    padding: 20px 15px;
    text-align: center;
    text-decoration: none;
    color: #555;
    border: 1px solid #eee;
    transition: all 0.3s;
}

.quick-action:hover {
    border-color: #e83e8c;
    color: #e83e8c;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quick-action i {
    display: block;
    font-size: 24px;
    margin-bottom: 10px;
}

.quick-action span {
    font-size: 14px;
    font-weight: 500;
}

/* Navigation Menu */
.dating-user-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 10px 0;
}

.dating-nav-container {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto;
}

.dating-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #666;
    font-size: 12px;
    position: relative;
    padding: 5px 10px;
}

.dating-nav-item i {
    font-size: 20px;
    margin-bottom: 5px;
}

.dating-nav-item.active {
    color: #e83e8c;
}

.dating-nav-item.active:after {
    content: '';
    position: absolute;
    top: -10px;
    width: 5px;
    height: 5px;
    background: #e83e8c;
    border-radius: 50%;
}

.nav-badge {
    position: absolute;
    top: -5px;
    right: 0;
    background: #e83e8c;
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
    .dating-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .activity-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .dating-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .dating-nav-item span {
        display: none;
    }
    
    .dating-nav-item i {
        margin-bottom: 0;
        font-size: 24px;
    }
}



/* Like Button */
.dating-like-btn {
    background: #fff;
    border: 2px solid #e83e8c;
    color: #e83e8c;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.dating-like-btn:hover {
    background: #fce4ec;
}

.dating-like-btn.liked {
    background: #e83e8c;
    color: white;
}

.dating-like-btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.dating-like-btn .like-count {
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.9em;
}

.dating-like-btn.liked .like-count {
    background: rgba(255,255,255,0.2);
}


#Subheader {
    background: linear-gradient(to right, #d71965, #470b4a);
    padding-top: 4.25rem;
}

#Subheader .title,
#Subheader ul.breadcrumbs li, #Subheader ul.breadcrumbs li a {
    color: #FFFFFF;
}


/* Loading states */
.dating-stats-grid.loading .dating-stat-card h3 {
    min-width: 40px;
    height: 24px;
    background: #f0f0f0;
    border-radius: 4px;
}

.dating-stats-grid.loading .loading-dots:after {
    content: '.';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60% { content: '...'; }
    80%, 100% { content: ''; }
}

.dating-stats-grid.loading .stat-placeholder {
    opacity: 0.7;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 0.4; }
    100% { opacity: 0.7; }
}