.goalkeeper-stats-section {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    box-sizing: border-box;
    z-index: 10;
}

.goalkeeper-selector {
    padding: 10px 12px;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    font-size: 0.95rem;
    font-weight: 300;
    background-color: transparent;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.goalkeeper-selector option {
    background-color: #1A1A1D;
    color: rgba(255, 255, 255, 0.9);
    padding: 10px;
}

.goalkeeper-selector:hover {
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.goalkeeper-selector:focus {
    outline: none;
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.goalkeeper-histogram {
    height: 228px;
    min-height: 0;
    position: relative;
    flex-shrink: 0;
}

.goalkeeper-histogram svg {
    width: 100%;
    height: 100%;
}

.goalkeeper-dumbbell {
    height: 160px;
    min-height: 0;
    position: relative;
    flex-shrink: 0;
}

.goalkeeper-dumbbell svg {
    width: 100%;
    height: 100%;
}

.goalkeeper-radial {
    height: 220px;
    min-height: 0;
    position: relative;
    flex-shrink: 0;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.goalkeeper-quadrant-container {
    width: 300px;
    height: auto;
    min-height: 0;
    position: relative;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
}

.goalkeeper-quadrant {
    width: 100%;
    height: auto;
}

.goalkeeper-radial svg {
    width: 100%;
    height: 100%;
}
