/* Global Styles */
@import url("fonts.css");
@import url("colors.css");
@import url("auth.css");
@import url("blog.css");
@import url("contact.css");
@import url("profile.css");
@import url("property-details.css");
@import url("default.css");
@import url("responsive.css");

/* Empty State Design */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    margin-top: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 15px;
    color: #111827;
}

.empty-state p {
    color: #6b7280;
    margin: 10px 0 20px;
    font-size: 0.95rem;
}

.empty-icon {
    font-size: 48px;
    color: #0d9488;
    background: #e6fffa;
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
}

.empty-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #0d9488;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s ease;
}

.empty-btn:hover {
    background: #0f766e;
    color: #fff;
}
