.company-showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.company-card {
  width: 220px;
  background: #fff;
  border: 1px solid #e6e6e6;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
  padding: 12px;
}
.text-primary {
  color: #21225F !important;
}


.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.company-logo { height: 90px; display:flex; align-items:center; justify-content:center; }
.company-img img { width: 80px; height:80px; object-fit:cover; border-radius:50%; }
.company-img.placeholder svg { width:80px; height:80px; }
.company-name { margin: 8px 0 0 0; font-size: 1rem; font-weight:600; }
.company-desc { font-size: 0.9rem; color:#666; margin-top:6px; }
/* Company Showcase Block Styles */
.company-showcase-slider-container {
    position: relative;
    padding: 0 50px;
}

.company-showcase-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.company-showcase-slider::-webkit-scrollbar {
    display: none;
}

.company-slide {
    flex: 0 0 auto;
    width: 320px;
}

.company-card {
    transition: all 0.3s ease;
    border-radius: 12px !important;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.profile-picture {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.profile-picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-avatar {
    width: 60px;
    height: 60px;
    font-size: 24px;
    background: #f8f9fa !important;
    border: 2px solid #dee2e6 !important;
}

.user-profile-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
}

.user-profile-section .user-avatar {
    border: 4px solid rgba(255,255,255,0.3) !important;
}

.user-profile-section .user-fullname {
    color: white !important;
    font-weight: 600;
}

.section-title {
    font-weight: 700;
    font-size: 1.75rem;
}

.stat-number {
    font-weight: 700;
}

.slider-navigation {
    z-index: 10;
    pointer-events: none;
}

.slider-prev, .slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    pointer-events: all;
    z-index: 20;
    border: 2px solid #dee2e6 !important;
}

.slider-prev:hover, .slider-next:hover {
    background-color: #007bff !important;
    color: white !important;
    border-color: #007bff !important;
}

.company-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.coach-name {
    font-size: 0.85rem;
}

.btn-view-details {
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .company-showcase-slider-container {
        padding: 0 40px;
    }
    
    .company-slide {
        width: 280px;
    }
    
    .slider-prev, .slider-next {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .company-showcase-slider-container {
        padding: 0 35px;
    }
    
    .company-slide {
        width: 260px;
    }
    
    .user-profile-section {
        padding: 20px 15px !important;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}
