.coach-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.coach-card .left {
    flex: 1;
}
.coach-card .left h3 {
    margin: 0 0 8px;
}
.coach-card .left h3 a {
    text-decoration: none;
    color: #0073e6;
}
.coach-card p {
    margin: 4px 0;
}
.light-inside {
    color: #dddddd;
    font-weight: normal;
    font-size: 90%; /* smaller if you want it lighter */
    margin-left: 6px;
    position: relative;
    top: -3px; /* 🔥 manually nudge it to match button text perfectly */
} 
.coach-card .right form {
    margin: 0;
    display: block;
}
.coach-card .right button,
.coach-card .right form button {
    width: 180px;
    text-align: center;
}
.coach-card .right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    margin-left: 20px;
}
.coach-card .right span {
    display: block;
    max-width: none;
    white-space: nowrap;
    position: relative;
    right: 0;
    text-align: right;
}

.coach-card.selected {
    background-color: #e6f2ff;
    border-color: #0073e6;
}

@media (max-width: 768px) {
    .coach-card {
        flex-direction: column;
    }
    .coach-card .right {
        align-items: stretch;
        margin-left: 0;
    }
    .coach-card .right button,
    .coach-card .right form button {
        width: 100%;
    }
}