/* Update column widths */
.nc-col-name {
    width: 35%;
}

.nc-col-contact {
    width: 30%;
}

.nc-col-count {
    width: 20%;
    text-align: center !important;
}

.nc-col-expand {
    width: 15%;
    text-align: center !important;
}

/* Contact cell styling */
.nc-investor-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.nc-investor-contact a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s;
}

.nc-investor-contact a:hover {
    color: #1e40af;
}

.nc-investor-contact i {
    font-size: 14px;
}

/* Property card redesign - no hover transform, just link styling */
.nc-property-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nc-property-link {
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.nc-property-link:hover .nc-property-title {
    color: #2563eb;
}

.nc-property-title {
    font-weight: 900;
    font-size: 15px;
    color: #0f172a;
    line-height: 1.3;
    transition: color 0.2s;
}

.nc-property-meta {
    display: flex;
    gap: 12px;
    font-size: 13px;
    color: #64748b;
    flex-wrap: wrap;
}

.nc-property-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nc-property-meta i {
    color: #94a3b8;
}

.nc-property-price {
    font-weight: 900;
    font-size: 16px;
    color: #2563eb;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.nc-property-website {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: #f1f5f9;
    border-radius: 6px;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.2s;
}

.nc-property-website:hover {
    background: #2563eb;
    color: #fff;
}

.nc-property-website i {
    font-size: 14px;
}

/* Investor logo in expanded section */
.nc-investor-logo-header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.nc-investor-logo-header img {
    max-width: 200px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===================================
   RESPONSIVE TABLE FIX
   =================================== */

/* ===================================
   RESPONSIVE TABLE FIX
   =================================== */

@media (max-width: 768px) {
    /* Tabela bez scroll-a */
    .nc-investors-table-wrapper {
        margin: 0;
    }
    
    .nc-investors-table {
        width: 100%;
    }
    
    /* Sakrij Website kolonu */
    .nc-col-website,
    .nc-investor-website {
        display: none;
    }
    
    /* Redefinisane kolone */
    .nc-col-name {
        width: 55%;
    }
    
    .nc-col-count {
        width: 25%;
        text-align: center;
    }
    
    .nc-col-expand {
        width: 20%;
        text-align: center;
    }
    
    /* Kompaktan font i padding */
    .nc-investors-table td,
    .nc-investors-table th {
        font-size: 12px !important;
        padding: 8px 4px !important;
    }
    
    /* Manji naziv */
    .nc-investor-name strong {
        font-size: 13px;
    }
    
    /* Ikonica investitora manja */
    .nc-investor-name i {
        font-size: 12px;
    }
    
    /* Badge count manji */
    .nc-badge-count {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    /* Expand button manji */
    .nc-expand-btn {
        padding: 6px 10px;
    }
    
    .nc-expand-btn i {
        font-size: 12px;
    }
    
    /* Logo u expanded */
    .nc-investor-logo-header img {
        max-width: 140px !important;
        max-height: 60px !important;
    }
    
    /* Property grid */
    .nc-properties-grid {
        grid-template-columns: 1fr !important;
    }
}
