/**
 * Profile Page Styling - Modern & Professional
 * Focused on Saved Properties card layout
 */

/* Price Alerts Information */
.price-alerts-info {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.15);
}

.price-alerts-info h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-alerts-info h4 i {
    color: #fff3cd;
}

.price-alerts-info p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* Active Alerts List */
.active-alerts-list {
    margin-top: 1rem;
}

/* Alert Property Card */
.alert-property-card {
    display: flex;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    align-items: center;
    gap: 1rem;
}

.alert-property-card:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-property-image {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.alert-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alert-property-details {
    flex: 1;
    color: #fff;
}

.alert-property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.alert-property-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.alert-type {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.alert-property-address {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.alert-property-mls {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.alert-property-specs {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

.alert-property-specs span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.alert-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.remove-alert-btn {
    background: rgba(239, 68, 68, 0.8);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.remove-alert-btn:hover {
    background: rgba(239, 68, 68, 1);
    transform: scale(1.1);
}

/* Alert Actions Container */
.alert-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex-shrink: 0;
    align-items: center;
}

/* Alert View Details Button */
.alert-view-btn {
    background: rgba(37, 99, 235, 0.8);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 110px;
    height: 36px;
}

.alert-view-btn:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

/* Fallback Alert Item (for when property details can't be loaded) */
.alert-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.alert-item:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
}

.alert-info {
    flex: 1;
}

.alert-property {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.alert-property strong {
    color: #fff;
    font-size: 0.9rem;
}

.alert-details {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Saved Properties Section */
.saved-properties {
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.saved-properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

/* Property Card - New Design */
.saved-property-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.saved-property-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

/* Property Image Container */
.property-image-container {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.saved-property-card:hover .property-image {
    transform: scale(1.05);
}

/* Property Badges */
.property-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.property-type-badge {
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

.listing-status-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(4px);
}

/* Property Card Content */
.property-card-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
}

.property-address {
    font-size: 16px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
}

.property-mls {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Property Details */
.property-details {
    display: flex;
    gap: 20px;
    margin: 8px 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #374151;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.detail-item i {
    color: #2563eb;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

/* Property Actions */
.property-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #ffffff;
    color: #6b7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-size: 14px;
}

.action-btn:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

.share-btn:hover {
    background: #eff6ff;
    border-color: #2563eb;
    color: #2563eb;
}

.alert-btn:hover {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #d97706;
}

.alert-btn.alert-active {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #d97706;
}

.alert-btn.alert-active:hover {
    background: #f59e0b;
    color: white;
}

.favorite-btn.active {
    background: #fef2f2;
    border-color: #ef4444;
    color: #ef4444;
}

.favorite-btn.active:hover {
    background: #ef4444;
    color: white;
}

.view-details-btn {
    flex: 1;
    padding: 10px 16px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    text-align: center;
    transition: all 0.15s ease;
    margin-left: 8px;
}

.view-details-btn:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: translateY(-1px);
}

/* Summary Section */
.saved-properties-summary {
    text-align: center;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.saved-properties-summary p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.saved-properties-summary i {
    color: #3b82f6;
}

/* Registration Message */
.registration-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.registration-prompt {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 90%;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    animation: slideUp 0.3s ease;
}

.registration-prompt i {
    font-size: 2rem;
    color: #3b82f6;
    margin-top: 0.25rem;
}

.message-content h4 {
    margin: 0 0 0.5rem 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.message-content p {
    margin: 0 0 1rem 0;
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.message-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.register-btn, .close-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.register-btn {
    background: #3b82f6;
    color: white;
}

.register-btn:hover {
    background: #2563eb;
    transform: translateY(-1px);
}

.close-btn {
    background: #f3f4f6;
    color: #6b7280;
}

.close-btn:hover {
    background: #e5e7eb;
    color: #374151;
}

/* Duplicate price-alerts-info rules removed - using main style with gradient */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Loading State */
.loading-placeholder {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.loading-placeholder i {
    font-size: 32px;
    color: #3b82f6;
    margin-bottom: 16px;
}

.loading-placeholder h3 {
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.loading-placeholder p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px dashed #d1d5db;
}

.empty-state i {
    font-size: 48px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.empty-state h3 {
    color: #1f2937;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    font-family: 'Inter', sans-serif;
}

.empty-state p {
    color: #6b7280;
    font-size: 16px;
    margin: 0 0 24px 0;
    font-family: 'Inter', sans-serif;
}

.profile-btn {
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s ease;
}

.profile-btn:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Error State */
.error-state {
    text-align: center;
    padding: 60px 20px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #fecaca;
    background-color: #fef2f2;
}

.error-state i {
    font-size: 32px;
    color: #dc2626;
    margin-bottom: 16px;
}

.error-state h3 {
    color: #dc2626;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Inter', sans-serif;
}

.error-state p {
    color: #7f1d1d;
    font-size: 14px;
    margin: 0 0 20px 0;
    font-family: 'Inter', sans-serif;
}

/* Success Message */
.success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Notes Timeline Styling - Professional Icons */
.notes-timeline {
    margin-top: 24px;
}

.notes-section {
    margin-bottom: 32px;
}

.notes-section h4 {
    color: #1f2937;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
}

.notes-section h4 i {
    color: #3b82f6;
    font-size: 18px;
}

.note-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.note-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.note-header {
    background: #f8fafc;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.note-date {
    color: #6b7280;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.note-date i {
    color: #3b82f6;
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dbeafe;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.note-actions {
    display: flex;
    gap: 8px;
}

.btn-small {
    padding: 8px 14px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #ffffff;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
    min-height: 32px;
}

.btn-small:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.btn-small i {
    font-size: 12px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-small i.fa-edit {
    background: #dbeafe;
    color: #2563eb;
}

.btn-small:hover i.fa-edit {
    background: #2563eb;
    color: white;
}

.btn-danger {
    border-color: #fecaca;
    color: #dc2626;
}

.btn-danger:hover {
    background: #fef2f2;
    border-color: #f87171;
}

.btn-danger i.fa-trash {
    background: #fee2e2;
    color: #dc2626;
}

.btn-danger:hover i.fa-trash {
    background: #dc2626;
    color: white;
}

.note-content {
    padding: 20px;
    color: #374151;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    white-space: pre-wrap;
}

.note-category {
    padding: 12px 20px;
    background: #f8fafc;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.note-category i {
    color: #8b5cf6;
    font-size: 12px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ede9fe;
    border-radius: 4px;
}

.view-property-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 6px;
    transition: all 0.15s ease;
}

.view-property-link:hover {
    background: #eff6ff;
    color: #1d4ed8;
}

.view-property-link i {
    font-size: 11px;
}

/* Note Edit Form Styling */
.note-edit-form {
    padding: 20px;
    background: #f8fafc;
}

.edit-textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    background: #ffffff;
    transition: all 0.15s ease;
}

.edit-textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.edit-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.btn-save {
    background: #2563eb !important;
    color: white !important;
    border-color: #2563eb !important;
}

.btn-save:hover {
    background: #1d4ed8 !important;
    border-color: #1d4ed8 !important;
}

.btn-save i {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.btn-cancel {
    background: #6b7280 !important;
    color: white !important;
    border-color: #6b7280 !important;
}

.btn-cancel:hover {
    background: #4b5563 !important;
    border-color: #4b5563 !important;
}

.btn-cancel i {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

/* Enhanced Icon Animations */
.note-date i:hover {
    background: #3b82f6;
    color: white;
    transform: scale(1.1);
}

.note-category i:hover {
    background: #8b5cf6;
    color: white;
    transform: scale(1.1);
}

/* Affordability Assessments Styles */
.affordability-assessments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.assessment-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.assessment-card:hover {
    background: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: #d1d5db;
}

.assessment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.assessment-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.assessment-status i {
    font-size: 1.25rem;
}

.status-text {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: capitalize;
}

.status-affordable { color: #22c55e; }
.status-not-affordable { color: #ef4444; }
.status-marginal { color: #f59e0b; }
.status-needs-consideration { color: #8b5cf6; }
.status-unknown { color: #6b7280; }

.assessment-date {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.assessment-property {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.property-info .property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 0.25rem;
}

.property-info .property-address {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.4;
}

.assessment-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.summary-label {
    font-size: 0.8rem;
    color: #6b7280;
    font-weight: 500;
}

.summary-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
}

.assessment-analysis {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.assessment-analysis p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #374151;
}

.assessment-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.view-property-btn, .view-assessment-btn {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.view-property-btn {
    background: rgba(37, 99, 235, 0.8);
    color: white;
}

.view-property-btn:hover {
    background: rgba(37, 99, 235, 1);
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.view-assessment-btn {
    background: rgba(99, 102, 241, 0.8);
    color: white;
}

.view-assessment-btn:hover {
    background: rgba(99, 102, 241, 1);
    transform: translateY(-1px);
}

.assessments-summary {
    text-align: center;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.assessments-summary p {
    margin: 0;
    color: #6b7280;
    font-size: 0.9rem;
}

.assessments-summary i {
    margin-right: 0.5rem;
    color: #3b82f6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .saved-properties {
        padding: 16px;
        margin: 0 -16px;
        border-radius: 0;
        box-shadow: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .saved-properties-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 16px;
    }
    
    .saved-property-card {
        min-height: auto;
    }
    
    .property-address {
        font-size: 16px;
    }
    
    .property-price {
        font-size: 18px;
    }
    
    .saved-property-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-view, .btn-remove {
        min-height: 44px;
        font-size: 16px;
    }
    
    .success-message {
        top: 10px;
        right: 10px;
        left: 10px;
        width: auto;
    }
    
    /* Affordability Assessments Mobile */
    .affordability-assessments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .assessment-card {
        padding: 1rem;
    }
    
    .assessment-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .assessment-summary {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .assessment-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .view-property-btn, .view-assessment-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        min-height: 44px;
    }
}

@media (max-width: 480px) {
    .empty-state, .loading-placeholder, .error-state {
        padding: 40px 16px;
    }
    
    .empty-state i {
        font-size: 36px;
    }
    
    .empty-state h3 {
        font-size: 18px;
    }
    
    .empty-state p {
        font-size: 14px;
    }
    
    /* Smaller mobile affordability assessments */
    .affordability-assessments-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 0.75rem;
    }
    
    .assessment-card {
        padding: 0.75rem;
    }
    
    .property-info .property-price {
        font-size: 1.25rem;
    }
    
    .assessment-status i {
        font-size: 1rem;
    }
    
    .status-text {
        font-size: 0.85rem;
    }
}