/* Keep the modal styles */
#coPilotInsightsModal .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#coPilotInsightsModal .modal-header {
    border-radius: 15px 15px 0 0;
}

#coPilotInsightsModal .modal-body {
    padding: 1.5rem;
}

.insight-section {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #0d6efd;
}

.insight-section h6 {
    font-weight: 600;
}

.insight-section p {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
}

.insight-section .progress {
    background-color: #e9ecef;
    border-radius: 10px;
}

.insight-section .progress-bar {
    border-radius: 10px;
}

.filter-tag {
    display: inline-block;
    background-color: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

.filter-tag.permanent-filter {
    background-color: #cce5ff;
    color: #004085;
    border: 1px solid #b8daff;
}

.filter-tag .remove-filter {
    margin-left: 0.5rem;
    cursor: pointer;
    color: #6c757d;
}

.filter-tag .remove-filter:hover {
    color: #dc3545;
}

/* Instant Rent Loading Page */
.instant-rent-loading-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: system-ui, -apple-system, sans-serif;
}

.instant-rent-loading-page .loading-container {
    text-align: center;
    padding: 2rem;
    max-width: 500px;
}

.instant-rent-loading-page .logo-spinner-container {
    margin-bottom: 1.5rem;
}

.instant-rent-loading-page h1 {
    font-size: 1.5rem;
    color: #212529;
    margin-bottom: 0.5rem;
}

.instant-rent-loading-page .address {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    word-break: break-word;
}

.instant-rent-loading-page .status {
    font-size: 0.95rem;
    color: #6c757d;
    min-height: 1.5em;
}

.instant-rent-loading-page .error-container {
    display: none;
    text-align: center;
    padding: 2rem;
}

.instant-rent-loading-page .error-container h2 {
    color: #dc3545;
    margin-bottom: 1rem;
}

.instant-rent-loading-page .error-message {
    color: #6c757d;
    margin-bottom: 1.5rem;
}