/* Custom styles for TeamPhysics */

/* Make the body have a minimum height for sticky footer */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Push the footer to the bottom */
.footer {
    margin-top: auto;
}

/* Responsive styles for mobile devices */
@media (max-width: 768px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .card {
        margin-bottom: 20px;
    }
}

/* Custom styles for forms */
.form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Exercise card styling */
.exercise-card {
    transition: transform 0.3s;
    height: 100%;
}

.exercise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.exercise-image {
    height: 200px;
    object-fit: cover;
}

/* Profile information styling */
.profile-info dt {
    font-weight: bold;
}

/* Progress chart container */
.chart-container {
    position: relative;
    height: 300px;
    margin-bottom: 30px;
}

/* Team badges */
.team-badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.75em;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
    background-color: #0d6efd;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* Player card */
.player-card {
    transition: all 0.3s;
}

.player-card:hover {
    border-color: #0d6efd;
    cursor: pointer;
}
