/**
 * Property Manager Frontend CSS
 */

/* Property Grid Layout */
.property-grid {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}
.property-grid *{
    font-family: "Marcellus", Sans-serif!important;
}
.property-grid-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 992px) {
    .property-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .property-grid-inner {
        grid-template-columns: 1fr;
    }
}

/* Property Item Styling */
.property-item {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1rem;
}

/* Property Header */
.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
}

.property-title {
    font-weight: 400;
    font-size: 1.25rem;
    color: #333;
}

.property-status-badge svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #333;
}

/* Property Price */
.property-price {
    padding: 0.5rem 1rem;
    font-weight: 400;
    font-size: 0.875rem;
    color: #333;
}

/* Property Image */
.property-image {
    width: 90%;
    margin:0 auto;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-image:hover img {
    transform: scale(1.05);
}

/* Property Body */
.property-body {
    padding: 1rem;
    border-top: 1px solid #f0f0f0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-body-title {
    font-family: sans-serif;
    font-size: 1.125rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0.75rem;
    color: #333;
}

.property-meta {
    margin-top: 0.5rem;
}

.property-meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #666;
    font-family: sans-serif;
    font-size: 0.875rem;
}

.property-meta-icon {
    font-weight: bold;
    margin-right: 0.5rem;
}

.property-meta-text {
    font-size: 0.875rem;
}

/* Tab Navigation Styling */
.property-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #f0f0f0;
}

.property-tab-item {
    padding: 1rem 2rem;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
}

.property-tab-item.active {
    color: #333;
}

.property-tab-item.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
}
