.info-box {
    background-color: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
}

.big-placeholder-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(31, 41, 55, 0.7);
    border: 1px solid rgba(75, 85, 99, 0.5);
    height: 0;
    padding-bottom: 30%;
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.big-placeholder-photo p {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 1.5rem;
    padding: 1rem;
}

.team-card {
    background-color: rgba(31, 41, 55, 0.7);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.5rem;
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: 120px;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(60, 130, 240, 0.3), 0 0 15px rgba(60, 130, 240, 0.2);
    border-color: rgba(96, 165, 250, 0.8);
}