/* PropertyDetailsSkeleton Component */
.property-skeleton .skeleton-text {
    height: 16px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
    opacity: 0.7;
}

.property-skeleton .skeleton-title {
    height: 28px;
}

.property-skeleton .skeleton-subtitle {
    height: 22px;
}

.property-skeleton .skeleton-rect {
    width: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 8px;
    opacity: 0.7;
}

.property-skeleton .skeleton-circle {
    border-radius: 50%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    opacity: 0.7;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ErrorDisplay Component */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin: 1rem;
    border-radius: 8px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.error-icon {
    color: #dc3545;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.error-content {
    text-align: center;
    width: 100%;
}

.error-details {
    margin: 1rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    text-align: left;
    overflow: auto;
    max-height: 300px;
}

.error-message {
    font-weight: bold;
    color: #dc3545;
}

.error-stack {
    font-size: 0.8rem;
    white-space: pre-wrap;
    margin-top: 0.5rem;
    background-color: #f1f1f1;
    padding: 1rem;
    border-radius: 4px;
    overflow-x: auto;
}

.error-reference {
    font-family: monospace;
    color: #6c757d;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.error-actions {
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
} 