.coach-list-container {
    margin-top: 120px;
    background: url(../img/hero-bg.png) top center no-repeat;
    background-size: cover;
}
.coach-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    transition: box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.coach-card:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.coach-img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.coach-info {
    padding-left: 15px;
}

.coach-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}


.coach-sports-code {
    font-weight: bold;
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.coach-club {
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.coach-location { 
    font-size: 1rem;
    color: #888;
    margin-bottom: 10px;
}

.button-panel-right {
    position: relative;
    float: right;
    bottom: 15px;
    left: 0px;
    top: 5px;
    border: 0px solid red;
}

.button-panel-right .btn {
    margin-right: 5px;
}

.button-panel-left {
    position: relative;
    float: left;
    bottom: 15px;
    left: 0px;
    top: 5px;
    border: 0px solid green;
}

.button-panel-left .btn {
    margin-left: 0px;
}


@media (max-width: 575.98px) {
    .hide-mobile {
      display: none;
    }

    
  }

