/* Property Modal Kolorystyka - Updated to match main buttons */
.property-modal.buy-theme .modal-header {
    background: linear-gradient(135deg, #0094FF 0%, #007bff 100%);
    color: white;
}

.property-modal.buy-theme .property-card {
    border: 2px solid #e3f2fd;
    transition: all 0.3s ease;
}

.property-modal.buy-theme .property-card:hover {
    border-color: #0094FF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 148, 255, 0.2);
}

.property-modal.buy-theme .property-icon i {
    color: #0094FF;
}

.property-modal.buy-theme .property-card:hover .property-icon i {
    color: #007bff;
}

.property-modal.sell-theme .modal-header {
    background: linear-gradient(135deg, #0BD3B8 0%, #00D4AA 100%);
    color: white;
}

.property-modal.sell-theme .property-card {
    border: 2px solid #e8f5f2;
    transition: all 0.3s ease;
}

.property-modal.sell-theme .property-card:hover {
    border-color: #0BD3B8;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(11, 211, 184, 0.2);
}

.property-modal.sell-theme .property-icon i {
    color: #0BD3B8;
}

.property-modal.sell-theme .property-card:hover .property-icon i {
    color: #00D4AA;
}

/* Minimalistyczne ikony - bez kolorowego tła */
.property-modal .property-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
    background: transparent !important;
    border: 2px solid #e2e8f0;
    border-radius: 12px; /* Rounded rectangle instead of circle */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* Buy theme icons */
.property-modal.buy-theme .property-icon {
    border-color: rgba(0, 148, 255, 0.2);
    background: rgba(0, 148, 255, 0.05) !important;
}

.property-modal.buy-theme .property-card:hover .property-icon {
    border-color: #0094FF;
    background: rgba(0, 148, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Sell theme icons */
.property-modal.sell-theme .property-icon {
    border-color: rgba(11, 211, 184, 0.2);
    background: rgba(11, 211, 184, 0.05) !important;
}

.property-modal.sell-theme .property-card:hover .property-icon {
    border-color: #0BD3B8;
    background: rgba(11, 211, 184, 0.1) !important;
    transform: translateY(-2px);
}

/* Transaction Limit Info Box */
.transaction-limit-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    margin-top: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 1px solid #bae6fd;
    border-radius: 12px;
    font-size: 0.9rem;
    color: #0369a1;
    line-height: 1.5;
}

.transaction-limit-info i {
    font-size: 1.1rem;
    margin-top: 2px;
    color: #0284c7;
    flex-shrink: 0;
}

.transaction-limit-info strong {
    color: #0c4a6e;
}

/* Sell theme info box */
.property-modal.sell-theme .transaction-limit-info {
    background: linear-gradient(135deg, #f0fdf9 0%, #ccfbf1 100%);
    border-color: #5eead4;
    color: #0f766e;
}

.property-modal.sell-theme .transaction-limit-info i {
    color: #14b8a6;
}

.property-modal.sell-theme .transaction-limit-info strong {
    color: #134e4a;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .property-modal.buy-theme .property-card,
    .property-modal.sell-theme .property-card {
        margin: 5px 0;
    }
    
    .property-modal .property-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .transaction-limit-info {
        padding: 12px 14px;
        font-size: 0.85rem;
        gap: 10px;
    }
}