/* Matchmaker Plugin Styles */

/* Smooth scrolling for mobile */
html, body {
    scroll-behavior: smooth;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .matchmaker-container {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }
    
    /* Ensure smooth scrolling on mobile */
    html, body {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Add some padding to prevent content from being cut off */
    .matchmaker-results-section {
        margin-top: 20px;
    }
}

.matchmaker-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    /* min-height: 80vh; */
}

/* Side-by-side layout */
.matchmaker-form-section {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid #3c5388;
}

.matchmaker-results-section {
    background: #3c5388;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
   /* min-height: 600px; */
}

/* Progress Visual Cues */
.progress-visual-cue {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6216, #3c5388);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2em;
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    transition: all 0.5s ease;
}

.progress-visual-cue.show {
    opacity: 1;
    animation: progressPulse 1s ease-out;
}

@keyframes progressPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Filter tightening animation */
.filter-tightening {
    position: relative;
    overflow: hidden;
}

.filter-tightening::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 98, 22, 0.3), transparent);
    animation: filterSweep 1s ease-out;
}

@keyframes filterSweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Progress bar */
.progress-bar-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #3c5388;
    z-index: 10;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff6216 0%, #fc9930 100%);
    width: 0%;
    transition: width 0.5s ease;
}

/* Results preview area */
.results-preview {
    padding: 30px;
    text-align: center;
    color: #6c757d;
   /* min-height: 400px; */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.results-preview h3 {
    color: #cacaca;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.results-preview p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 300px;
}

/* Match Preview Card */
.match-preview-card {
    background: #ffffff;
    border: 2px solid #3c5388;
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 100%;
    animation: matchPreviewPulse 3s ease-in-out infinite;
}

@keyframes matchPreviewPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(255, 98, 22, 0.2);
    }
}

.match-preview-header {
    margin-bottom: 25px;
}

.match-preview-header h3 {
    color: #3c5388;
    font-size: 2.5em;
    margin: 0;
}

.match-preview-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
}
.question-mark-placeholder {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items:center; justify-content: center;
    font-size: 40px; 
    color: #3c5388;
}
.profile-picture,
.broker-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #3c5388;
    box-shadow: 0 4px 15px rgb(13 52 185 / 30%);
    transition: all 0.3s ease;
}

.profile-picture:hover,
.broker-picture:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 98, 22, 0.5);
}

.profile-picture img,
.broker-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.match-logo {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(48, 43, 107, 0.4));
    animation: logoGlow 2s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 8px rgba(49, 71, 121, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(40, 54, 119, 0.6));
        transform: scale(1.05);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.match-logo.rotate-360 {
    animation: rotate360 1s ease-in-out;
}

.match-preview-text {
    text-align: center;
}

.match-preview-text p {
    color: #cacaca;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    max-width: none;
}

/* Match Actions */
.match-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.match-action-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
}

.match-action-btn.yes-btn {
    background: #28a745;
    color: white;
}

.match-action-btn.yes-btn:hover {
    background: #218838;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.match-action-btn.no-btn {
    background: #dc3545;
    color: white;
}

.match-action-btn.no-btn:hover {
    background: #c82333;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.match-action-btn.liked {
    background: #ff6216;
    animation: likedPulse 0.6s ease-out;
}

@keyframes likedPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Match Details */
.match-details {
    text-align: center;
}

.match-name {
    color: #cacaca;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.match-details-link {
    display: inline-block;
    background: #ff6216;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.match-details-link:hover {
    background: #e70000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 36, 134, 0.4);
    color: white;
    text-decoration: none;
}

/* Results Match Preview */
.results-match-preview {
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.results-match-card {
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

/* Connection line effect */
.match-preview-visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #3c5388 20%, #3c5388 50%, #3c5388 80%, transparent 100%);
    z-index: 1;
    animation: connectionPulse 2s ease-in-out infinite;
}

@keyframes connectionPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scaleX(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scaleX(1.1);
    }
}

/* Blurry preview card */
.blurry-preview-card {
    background: #3c5388;
    border: 2px solid #3c5388;
    border-radius: 16px;
    padding: 25px;
    margin-top: 30px;
    width: 100%;
    filter: blur(5px);
    opacity: 0.6;
    animation: blurryPulse 2s ease-in-out infinite;
}

.blurry-card-image {
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;    
    filter: blur(20px);
}

.blurry-card-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes blurryPulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.blurry-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #3c5388;
    width: 100%;
}

.blurry-card-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #cacaca;
    background: linear-gradient(90deg, #3c5388 0%, #f19c50 50%, #3c5388 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    border-radius: 4px;
    height: 20px;
    width: 150px;
}

.blurry-card-score {
    background: linear-gradient(90deg, #ff6216 0%, #e70000 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    min-width: 80px;
    text-align: center;
    margin-top: 15px;
    align-self: center;
}

.blurry-card-content {
    text-align: left;
}

.blurry-card-reasons {
    margin-bottom: 20px;
}
.card-reasons ul li {
    list-style: none;
}
.blurry-reason {
     background: linear-gradient(90deg, #3c5388 0%, #f19c50 50%, #3c5388 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
    border-radius: 4px;
    height: 16px;
    margin-bottom: 10px;
    width: 100%;
}

.blurry-reason:nth-child(1) {
    width: 90%;
    animation-delay: 0s;
}

.blurry-reason:nth-child(2) {
    width: 75%;
    animation-delay: 0.3s;
}

.blurry-reason:nth-child(3) {
    width: 85%;
    animation-delay: 0.6s;
}

.blurry-card-actions {
    display: flex;
    gap: 12px;
}

.blurry-btn {
    flex: 1;
    height: 40px;
    border-radius: 10px;
     background: linear-gradient(90deg, #3c5388 0%, #f19c50 50%, #3c5388 100%);
    background-size: 200% 100%;
    animation: shimmer 2s ease-in-out infinite;
}

.blurry-btn:nth-child(1) {
    animation-delay: 0.9s;
}

.blurry-btn:nth-child(2) {
    animation-delay: 1.2s;
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Match score display */
.match-score-display {
    background: linear-gradient(135deg, #ff6216 0%, #f19c50 100%);
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 20px;
}

.match-score-number {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.match-score-label {
    font-size: 1.2em;
    opacity: 0.9;
}

/* Top match highlight */
.top-match-card {
    background: #3C5388;
    border: 2px solid #ff6216;
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.top-match-card::before {
    content: 'BEST MATCH';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6216;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
}

.top-match-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-match-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.top-match-title {
    font-size: 1.4em;
    font-weight: 700;
    color: #cacaca;
    margin-bottom: 15px;
}

.top-match-reasons {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-match-reasons li {
    padding: 5px 0;
    color: #cacaca;
    font-size: 0.9em;
    position: relative;
    padding-left: 20px;
}

.top-match-reasons li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6216;
    font-weight: bold;
}

/* Runner-up cards */
.runner-up-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.runner-up-card {
    background: #3C5388;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.runner-up-image {
    width: 100%;
    height: 120px;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

.runner-up-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.runner-up-card:hover {
    border-color: #ff6216;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 98, 22, 0.2);
}

.runner-up-card.swipe-right {
    transform: translateX(100%) rotate(15deg);
    opacity: 0;
    transition: all 0.5s ease;
}

.runner-up-card.swipe-left {
    transform: translateX(-100%) rotate(-15deg);
    opacity: 0;
    transition: all 0.5s ease;
}

.match-preview-card.swipe-left {
    transform: translateX(-100%) rotate(-15deg);
    opacity: 0;
    transition: all 0.5s ease;
}

.runner-up-title {
    font-size: 1.2em;
    font-weight: 600;
    color: #cacaca;
    margin-bottom: 10px;
}

.runner-up-score {
    color: #ff6216;
    font-weight: 600;
    margin-bottom: 10px;
}

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

.runner-up-btn {
    flex: 1;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
}

.runner-up-btn.yes {
    background: #28a745;
    color: white;
}

.runner-up-btn.yes:hover {
    background: #218838;
    transform: translateY(-1px);
}

.runner-up-btn.no {
    background: #6c757d;
    color: white;
}

.runner-up-btn.no:hover {
    background: #5a6268;
    transform: translateY(-1px);
}

/* Form Styles */
.matchmaker-form {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.matchmaker-header {
    color: white;
    padding: 30px;
    text-align: center;    
}

.matchmaker-header h2 {
    margin: 0 0 10px 0;
    font-size: 3.2em;
    font-weight: 600;
}

.matchmaker-header p {
    margin: 0;
    font-size: 1.6em;
}

/* Filters */
.matchmaker-filters {
    padding: 20px 30px;
    background: #3C5388;
    border-bottom: 1px solid #e9ecef;
}

.matchmaker-filters h3 {
    margin: 0 0 15px 0;
    color: #495057;
    font-size: 1.2em;
}

.filter-group {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 10px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #495057;
}

.filter-group select {
    padding: 8px 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    background: #3c5388;
    min-width: 150px;
}

/* Question Steps */
.matchmaker-step {
    padding: 30px;
    /* min-height: 400px; */
    background: #3c5388;
}

.question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #3c5388;
}

.question-header h3 {
    margin: 0;
    font-size: 1.5em;
    color: #ffffff;
    flex: 1;
    font-weight: normal;
}

.step-indicator {
    display: none !important;
}

/* Question Content */
.question-content {
    margin-bottom: 30px;
}

.option-item {
    margin-bottom: 15px;
    position: relative;
}

.option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.option-label {
    display: block;
    padding: 15px 20px;
    background: #ffffff;
    border: 1px solid #3c5388;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c6c6c;
    font-size: 16px;
}

.option-label:hover {
        background: #ffdcb8;
        border-color: #ff6216;
}

.option-input:checked + .option-label {
    background: #ff6216;
    color: white;
    border-color: #ff6216;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 0, 0.3);
}

/* Range Slider */
.range-container {
    text-align: center;
    padding: 20px 0;
}

.range-input {
    width: 100%;
    max-width: 400px;
    height: 8px;
    border-radius: 4px;
    background: #333;
    outline: none;
    -webkit-appearance: none;
    margin: 20px 0;
}
.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff6216;
    cursor: pointer;
}

.range-input::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff6216;
    cursor: pointer;
    border: none;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 0.9em;
}

.range-value {
    margin-top: 10px;
}

.current-value {
    font-size: 1.5em;
    font-weight: 600;
    color: #ff6216;
}

/* Dropdown Styles */
.dropdown-container {
    margin: 20px 0;
}

.dropdown-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #333;
    border-radius: 8px;
    font-size: 1em;
    background: #3C5388;
    color: #cacaca;
    transition: border-color 0.3s ease;
}

.dropdown-input:focus {
    outline: none;
    border-color: #ff6216;
    box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.1);
}

.dropdown-input:hover {
    border-color: #333;
}

/* Country Select Styles */
.country-select-container {
    margin: 20px 0;
}

.country-select-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #c3c3c3;
    border-radius: 8px;
    font-size: 1em;
    background: #ffffff;
    color: #6c6c6c;
    transition: border-color 0.3s ease;
}

.country-select-input:focus {
    outline: none;
    border-color: #ff6216;
    box-shadow: 0 0 0 3px rgba(255, 126, 0, 0.1);
}

.country-select-input:hover {
    border-color: #333;
}

/* Max 2 Checkbox Styles */
.max2-checkbox:checked + .option-label {
    background: #ff6216;
    color: white;
    border-color: #ff6216;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 126, 0, 0.3);
}

.max2-checkbox:checked + .option-label::after {
    content: " ✓";
    float: right;
    font-weight: bold;
}

/* Checkbox limit warning */
.option-item.max-limit-reached .option-label {
    opacity: 0.5;
    cursor: not-allowed;
}

.option-item.max-limit-reached .option-label:hover {
    background: #3C5388;
    border-color: #333;
    transform: none;
    box-shadow: none;
}

/* Navigation */
.question-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 1em;
}
button.btn.btn-primary.next-step.start-match-btn:hover, button.btn.btn-primary.next-step.start-match-btn:focus {
    background: #ff8a01;
    color: #fff;
    border: 1px solid #ff8a01;
}
button.btn.btn-secondary.prev-step, button.btn.btn-primary.next-step, button.btn.btn-primary.submit-form, button.btn.btn-secondary.restart-form {
    background: #fff;
    border-radius: 20px;
    color: #3c5388;
}
button.btn.btn-secondary.prev-step:hover, button.btn.btn-primary.next-step:hover, button.btn.btn-secondary.prev-step:focus, button.btn.btn-primary.next-step:focus, button.btn.btn-primary.submit-form:hover, button.btn.btn-primary.submit-form:focus, button.btn.btn-secondary.restart-form:hover, button.btn.btn-secondary.restart-form:focus {
    background: #ff8a01;
    color: #fff;
    border: 1px solid #ff8a01;
}
.match-screen-actions a.btn.btn-primary {
    background: #3c5388;
    color: #fff;
}
.match-screen-actions a.btn.btn-secondary.butt-color {
    color: #3c5388;
    border: 1px solid #3c5388;
}
.match-screen-continue button.btn.btn-outline {
    background: #fff;
    border-radius: 10px;
    color: #3c5388;
}
.btn-secondary {
    border: 1px solid #333;
    color: #fff;
}

.btn-secondary:hover {
    color: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #cacaca;
    border: 2px solid #cacaca;
}

.btn-outline:hover {
    background: #cacaca;
    color: #3C5388;
    transform: translateY(-2px);
}
.btn-primary.next-step.start-match-btn {
    margin: 0 auto;
    background: #fff;
    border-radius: 21px;
    padding: 6px 20px;
    font-size: 16px;
    color: #3c5388;
}
/* Results */
.matchmaker-results {
}


.results-header {
    color: white;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.results-header h3 {
    margin: 0;
    font-size: 1.5em;
}

.results-header .restart-form {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Cards - Dating App Style */
.matchmaker-cards {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    margin: 0 auto;
    max-width: 400px;
    position: relative;
}

/* Dating App Card */
.dating-app-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: grab;
    position: relative;
    width: 100%;
    max-width: 380px;
    z-index: 1;
    user-select: none;
}

.dating-app-card.swiping {
    transition: none;
}

.dating-app-card:active {
    cursor: grabbing;
}

.dating-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.dating-app-card .card-image {
    width: 100%;
    position: relative;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dating-app-card .card-image img {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 100px;
}


.dating-app-card .card-content {
    padding: 5px 25px 15px;
}

.dating-app-card .card-title {
    font-size: 2.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #3c5388;
    text-align: center;
}

.dating-app-card .mtc-platform-score {
    margin: 0 0 14px 0;
}

.dating-app-card .mtc-card-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.dating-app-card .mtc-card-rating-number {
    font-weight: 600;
    font-size: 18px;
    color: #3c5388;
}

.dating-app-card .mtc-card-rating-out-of {
    opacity: 0.8;
    color: #3c5388;
}
.mtc-card-value {
    font-size: 16px;
    text-align: center;
}
.mtc-card-value.highlights-value p {
    font-size: 12px !important;
    border: 1px solid #3c5388;
    border-radius: 10px;
    color: #3c5388 !important;
    padding: 0px 3px;
    margin: 2px !important;
    display: inline-block;
}
.mtc-card-value.restricted-value {
    text-align: center;
    margin: 10px;
}
.mtc-card-value.restricted-value p {
    color: #3c5388;
}
.card-score {
    text-align: center;
    font-size: 24px;
    margin: 10px;
    font-weight: 600;
    color: #ff8a01;
}
/* Banana stars fallback styling for matchmaker cards */
.dating-app-card .banana-star {
    position: relative;
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 2px;
    vertical-align: middle;
}

.dating-app-card .banana-star-base {
    width: 100%;
    height: 100%;
    display: block;
}

.dating-app-card .banana-star-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-size: 21px 21px;
    background-repeat: no-repeat;
    background-position: left bottom;
    overflow: hidden;
    pointer-events: none;
}

.dating-app-card .card-reasons {
    margin-bottom: 25px;
}

.dating-app-card .mtc-card-acf-row-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.dating-app-card .mtc-card-acf-pair {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    text-align: center;
    margin: 10px;
}

.dating-app-card .card-reasons ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dating-app-card .card-reasons li {
    padding: 2px 0;
    color: #3c5388;
    font-size: 1.2em;
    position: relative;
    padding-left: 20px;
}

.dating-app-card .card-reasons li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6216;
    font-weight: bold;
}

.dating-app-card .card-reasons p {
    color: #3c5388;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

.dating-app-card .card-actions {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.dating-app-card .card-btn {
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    min-height: 60px !important;
    max-width: 60px !important;
    max-height: 60px !important;
    border-radius: 50% !important;
    border: none;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0 !important;
    margin: 0 !important;
    aspect-ratio: 1 / 1 !important;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.dating-app-card .card-btn-pass {
    background: #dc3545;
    color: white;
}

.dating-app-card .card-btn-pass:hover {
    background: #c82333;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
}

.dating-app-card .card-btn-like {
    background: #3c5388;
    color: white;
}

.dating-app-card .card-btn-like:hover {
    background: #f19c50;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(185, 82, 13, 0.4);
}

/* Swipe animations for dating app cards */
.dating-app-card.swipe-left {
    transform: translateX(-100vw) rotate(-30deg);
    opacity: 0;
    transition: all 0.5s ease;
}

.dating-app-card.swipe-right {
    transform: translateX(100vw) rotate(30deg);
    opacity: 0;
    transition: all 0.5s ease;
}

/* Swipe visual feedback indicators */
.dating-app-card.swipe-left-indicator::before {
    content: "PASS";
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: rgba(255, 0, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2em;
    z-index: 10;
    animation: swipeIndicator 0.3s ease;
}

.dating-app-card.swipe-right-indicator::before {
    content: "LIKE";
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    background: rgba(0, 255, 0, 0.8);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 1.2em;
    z-index: 10;
    animation: swipeIndicator 0.3s ease;
}

@keyframes swipeIndicator {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Start Over Container */
.start-over-container {
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

.start-over-container .btn {
    margin: 0 auto;
}

/* Match Screen */
.match-screen {
    background: #ffffff;
    border: 2px solid #ff6216;
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(255, 98, 22, 0.3);
    animation: matchScreenPulse 2s ease-in-out infinite;
}

@keyframes matchScreenPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 30px rgba(255, 98, 22, 0.3);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(255, 98, 22, 0.5);
    }
}

.match-screen-header h2 {
    font-family: Oxanium, 'Poppins', sans-serif;
    color: #ff6216;
    font-size: 3.5em;
    margin: 0 0 30px 0;
}

.match-screen-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

.match-screen-visual .profile-picture,
.match-screen-visual .broker-picture {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6216;
    box-shadow: 0 4px 15px rgba(255, 98, 22, 0.3);
    transition: all 0.3s ease;
}

.match-screen-visual .profile-picture:hover,
.match-screen-visual .broker-picture:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 98, 22, 0.5);
}

.match-screen-visual .profile-picture img,
.match-screen-visual .broker-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.match-screen-visual .match-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.match-screen-visual .match-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 8px rgba(63, 55, 163, 0.4));
    animation: logoGlow 2s ease-in-out infinite;
}

.match-screen-content h3 {
    color: #3c5388;
    font-size: 2.5em;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.match-screen-content p {
    color: #3c5388;
    font-size: 1.5em;
    margin: 0 0 30px 0;
    line-height: 1.6;
}

.match-screen-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.match-screen-continue {
    display: flex;
    justify-content: center;
}

/* No More Cards */
.no-more-cards {
    text-align: center;
    padding: 60px 20px;
    color: #cacaca;
    background: #3C5388;
    border-radius: 12px;
    margin: 20px;
}

.no-more-cards h3 {
    color: #cacaca;
    font-size: 1.8em;
    margin-bottom: 20px;
    font-weight: 600;
}

.no-more-cards p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mm-card {
    background: #3C5388;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: grab;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 380px;
    z-index: 1;
}

.mm-card:nth-child(2) {
    z-index: 2;
    transform: translateX(-50%) scale(0.95);
    opacity: 0.8;
}

.mm-card:nth-child(3) {
    z-index: 3;
    transform: translateX(-50%) scale(0.9);
    opacity: 0.6;
}

.mm-card:active {
    cursor: grabbing;
}

.mm-card:hover {
    transform: translateX(-50%) translateY(-5px);
}

.card-image {
    width: 100%;
    background: linear-gradient(135deg, #ff6216 0%, #e70000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.card-type-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    margin-bottom: 10px;
}

.match-percentage {
    font-size: 2.5em;
    font-weight: 700;
}

.card-content {
    padding: 25px;
}

.card-title {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: #cacaca;
    text-align: center;
}

.card-scores {
    margin-bottom: 20px;
}

.score-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    gap: 10px;
}

.score-label {
    font-size: 0.9em;
    color: #cacaca;
    min-width: 120px;
    font-weight: 500;
}

.score-bar {
    flex: 1;
    height: 8px;
    background: #333;
    border-radius: 4px;
    overflow: hidden;
}

.score-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6216 0%, #e70000 100%);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.score-value {
    font-size: 0.9em;
    color: #cacaca;
    font-weight: 600;
    min-width: 40px;
    text-align: right;
}

.why-match {
    background: #333;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.why-match h4 {
    color: #ff6216;
    font-size: 1em;
    margin: 0 0 10px 0;
    font-weight: 600;
}

.why-match ul {
    margin: 0;
    padding-left: 20px;
    color: #cacaca;
}

.why-match li {
    margin-bottom: 5px;
    font-size: 0.9em;
    line-height: 1.4;
}

.card-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-item {
    background: #333;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.highlight-label {
    display: block;
    font-size: 0.8em;
    color: #6c757d;
    margin-bottom: 5px;
    font-weight: 500;
}

.highlight-value {
    display: block;
    font-size: 1em;
    color: #cacaca;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 12px;
}

.card-btn {
    flex: 1;
    padding: 12px 16px;
    border: none !important;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    font-size: 0.9em;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.card-btn-like {
    background: #ff6216;
    color: white;
}

.card-btn-like:hover {
    background: #e70000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 98, 22, 0.4);
}

.card-btn-pass {
    background: #6c757d;
    color: white;
}

.card-btn-pass:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.card-btn-view {
    background: #28a745;
    color: white;
}

.card-btn-view:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

/* Loading */
.matchmaker-loading {
    text-align: center;
    padding: 60px 20px;
    background: #3C5388;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6216;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* No Results */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #cacaca;
    background: #3C5388;
    border-radius: 12px;
    margin: 20px;
}

.no-results h4 {
    color: #cacaca;
    font-size: 1.5em;
    margin-bottom: 15px;
    font-weight: 600;
}

.no-results p {
    font-size: 1.1em;
    margin-bottom: 25px;
    line-height: 1.6;
}

.no-results .btn {
    margin-top: 10px;
}
button.btn.btn-outline {
    background: transparent;
}
/* Login Notice */
.matchmaker-login-notice {
    background: #3C5388;
    border: 1px solid #3c5388;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    text-align: center;
}
.matchmaker-login-notice p {
    color: #ffffff;
    font-weight: normal;
    font-size: 16px;
}
.matchmaker-login-notice a {
    color: #ff6216;
    font-weight: 500;
    text-decoration: none;
}

.matchmaker-login-notice a:hover {
    text-decoration: underline;
}

/* Error */
.matchmaker-error {
    background: #3C5388;
    color: #ff6216;
    padding: 30px 20px;
    margin: 20px;
    border-radius: 12px;
    border: 2px solid #ff6216;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(255, 98, 22, 0.2);
    animation: errorSlideIn 0.3s ease-out;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.matchmaker-error::before {
    content: '⚠️';
    font-size: 1.5em;
    margin-right: 10px;
    vertical-align: middle;
}

.matchmaker-error strong {
    color: #ff6216;
    font-weight: 600;
    font-size: 1.1em;
}

.matchmaker-error .error-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: #ff6216;
    font-size: 1.5em;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.matchmaker-error .error-close:hover {
    background: rgba(255, 98, 22, 0.1);
    transform: scale(1.1);
}

@keyframes errorSlideIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Message */
.matchmaker-success {
    background: #3C5388;
    color: #4ade80;
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    border: 2px solid #4ade80;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.2);
    animation: errorSlideIn 0.3s ease-out;
}

.matchmaker-success::before {
    content: '✅';
    font-size: 1.5em;
    margin-right: 10px;
    vertical-align: middle;
}

.matchmaker-success strong {
    color: #4ade80;
    font-weight: 600;
    font-size: 1.1em;
}

/* Info Message */
.matchmaker-info {
    background: #3C5388;
    color: #60a5fa;
    padding: 20px;
    margin: 20px 0;
    border-radius: 12px;
    border: 2px solid #60a5fa;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 20px rgba(96, 165, 250, 0.2);
    animation: errorSlideIn 0.3s ease-out;
}

.matchmaker-info::before {
    content: 'ℹ️';
    font-size: 1.5em;
    margin-right: 10px;
    vertical-align: middle;
}

.matchmaker-info strong {
    color: #60a5fa;
    font-weight: 600;
    font-size: 1.1em;
}

/* Error in results section - special styling */
.matchmaker-results-section .matchmaker-error {
    margin: 40px 20px;
    padding: 40px 20px;
    min-height: 300px;
}

.matchmaker-results-section .matchmaker-error strong {
    font-size: 1.3em;
    margin-bottom: 15px;
    display: block;
}

.matchmaker-results-section .matchmaker-error small {
    font-size: 0.85em;
    line-height: 1.4;
    margin-top: 10px;
    display: block;
}

/* Start Over button in error message */
.matchmaker-error .start-over-btn {
    background: #ff6216;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.matchmaker-error .start-over-btn:hover {
    background: #e55a0f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 98, 22, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .matchmaker-container {
        padding: 10px;
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .matchmaker-form-section,
    .matchmaker-results-section {
        min-height: auto;
    }
    
    .matchmaker-header {
        padding: 20px;
    }
    
    .matchmaker-header h2 {
        font-size: 1.8em;
    }
    
    .matchmaker-step {
        padding: 20px;
    }
    
    .question-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .question-navigation {
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }
    .matchmaker-error,
    .matchmaker-success,
    .matchmaker-info {
        margin: 15px 0;
        padding: 15px;
        font-size: 0.9em;
    }
    
    .matchmaker-error .error-close,
    .matchmaker-success .error-close,
    .matchmaker-info .error-close {
        top: 8px;
        right: 10px;
        width: 25px;
        height: 25px;
        font-size: 1.2em;
    }
    
    /* Mobile responsive for error in results section */
    .matchmaker-results-section .matchmaker-error {
        margin: 20px 10px;
        padding: 30px 15px;
        min-height: 250px;
    }
    
    .matchmaker-results-section .matchmaker-error strong {
        font-size: 1.1em;
    }
    
    /* Mobile responsive for start over button */
    .matchmaker-error .start-over-btn {
        padding: 10px 20px;
        font-size: 0.8em;
        margin-top: 15px;
    }
    
    .question-mark-placeholder {
        width: 55px;
        height: 50px;        
    }
    .btn {
        width: auto;
        min-width: 120px;
        text-align: center;
        padding: 10px 16px;
        font-size: 0.9em;
    }
    
    .question-navigation .btn {
        flex: 0 0 auto;
    }
    
    /* Ensure buttons stay on left and right on very small screens */
    @media (max-width: 480px) {
        .question-navigation {
            flex-direction: row;
            justify-content: space-between;
            gap: 8px;
        }
        
        .btn {
            min-width: 100px;
            padding: 8px 12px;
            font-size: 0.85em;
        }
    }
    
    .matchmaker-cards {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    
    .filter-group {
        display: block;
        margin-bottom: 15px;
    }
    
    .filter-group select {
        width: 100%;
    }
    
    .progress-visual-cue {
        width: 150px;
        height: 150px;
        font-size: 1em;
    }
    
    .match-score-number {
        font-size: 2.5em;
    }
    
    .runner-up-actions {
        flex-direction: column;
    }
    
    .runner-up-btn {
        width: 100%;
    }
    
    .match-preview-card {
        padding: 20px;
        max-width: 100%;
    }
    
    .match-preview-visual {
        gap: 15px;
    }
    
    .profile-picture,
    .broker-picture {
        width: 60px;
        height: 60px;
    }
    
    .match-logo {
        width: 45px;
        height: 45px;
    }
    
    .match-preview-header h3 {
        font-size: 1.5em;
    }
    
    /* Dating app card mobile styles */
    .dating-app-card {
        max-width: 100%;
        margin: 0 10px;
    }
    
    .dating-app-card .card-image {
        padding: 15px;
    }
    
    .dating-app-card .card-actions {
        gap: 20px;
    }
    
    .dating-app-card .card-btn {
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
        min-height: 50px !important;
        max-width: 50px !important;
        max-height: 50px !important;
        font-size: 20px;
        aspect-ratio: 1 / 1 !important;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
        cursor: pointer;
    }
    
    .match-screen {
        padding: 20px;
        margin: 10px;
    }
    
    .match-screen-header h2 {
        font-size: 2em;
    }
    
    .match-screen-visual {
        gap: 20px;
    }
    
    .match-screen-visual .profile-picture,
    .match-screen-visual .broker-picture {
        width: 80px;
        height: 80px;
    }
    
    .match-screen-visual .match-logo {
        width: 60px;
        height: 60px;
    }
    
    .match-screen-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .match-screen-actions .btn {
        width: 100%;
    }
}

/* Swipe animations */
.mm-card.swiping {
    transition: transform 0.1s ease-out;
}

.mm-card.swipe-right {
    transform: translateX(100vw) rotate(30deg);
    opacity: 0;
}

.mm-card.swipe-left {
    transform: translateX(-100vw) rotate(-30deg);
    opacity: 0;
}

/* Admin Styles */
.matchmaker-dashboard {
    display: grid;
    gap: 30px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.stat-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-box h3 {
    margin: 0 0 10px 0;
    color: #6c757d;
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #ff6216;
}

.dashboard-actions {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.action-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dashboard-recent {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.recent-likes-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-likes-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
}

.recent-likes-list li:last-child {
    border-bottom: none;
}

.responses-table {
    margin-top: 20px;
}

.likes-count {
    font-weight: 600;
    color: #ff6216;
}

.liked-brokers {
    margin-top: 5px;
}

.broker-link {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 2px 8px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.8em;
    margin-right: 5px;
    margin-bottom: 5px;
}

.broker-link:hover {
    background: #e9ecef;
}

.more-likes {
    color: #6c757d;
    font-size: 0.8em;
    font-style: italic;
}

.settings-notice {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 4px;
    padding: 15px;
    margin: 20px 0;
}

.settings-links {
    margin: 20px 0;
}

.settings-links .button {
    margin-right: 10px;
    margin-bottom: 10px;
}

.config-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.config-summary h4 {
    margin: 0 0 15px 0;
    color: #495057;
}

.config-summary ul {
    margin: 0;
    padding-left: 20px;
}

.config-summary li {
    margin-bottom: 5px;
    color: #6c757d;
}

.export-options {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.export-stats {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.export-stats ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-stats li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
}

.export-stats li:last-child {
    border-bottom: none;
}

.export-stats strong {
    color: #495057;
    min-width: 150px;
    display: inline-block;
}
